:root {
    --accent: #fac710;
    --accent-dark: #e1b105;
    --black: #000000;
    --white: white;
    --background-color: #F2F0F0;
    --grey: #e6e6e6
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: OpenSans, Arial, Arial, Helvetica, sans-serif, sans-serif
}
.line {
    width: 100%;
    height: 1px;
}


.bg-accent {
    background-color: var(--accent)!important;
}
.bg-grey {
    background-color: var(--grey) !important;
}
.bg-color {
    background-color: var(--background-color) !important;
}

.text-accent {
    color: var(--accent) !important;
}
.text-black {
    color: var(--black) !important;
}
.text-white {
    color: var(--white) !important;
}

.border-color-accent {
    border-color: var(--accent)!important;
}
.border-color-black {
    border-color: var(--black)!important;
}
.border-color-bg-color {
    border-color: var(--background-color) !important;
}
.md-stepper-horizontal {
    display: table;
    width: 100%;
    margin: 0 auto;
    background-color: var(--background-color);
}

.md-stepper-horizontal .md-step {
    display: table-cell;
    position: relative;
    padding: 24px;
    //background-color: var(--)
}



.md-stepper-horizontal .md-step:active {
    border-radius: 15% / 75%;
}

.md-stepper-horizontal .md-step:first-child:active {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.md-stepper-horizontal .md-step:last-child:active {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}



.md-stepper-horizontal .md-step:first-child .md-step-bar-left,
.md-stepper-horizontal .md-step:last-child .md-step-bar-right {
    display: none;
}

.md-stepper-horizontal .md-step .md-step-circle {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    /* background-color: #999999; */
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    border: 2px solid var(--accent);
}

.md-stepper-horizontal.green .md-step.active .md-step-circle {
    background-color: var(--accent);
    color: var(--accent)
}

.md-stepper-horizontal.orange .md-step.active .md-step-circle {
    background-color: var(--accent);
    color: var(--white)
}

.md-stepper-horizontal .md-step.active .md-step-circle {
    background-color: rgb(33,150,243);
}

.md-stepper-horizontal .md-step.done .md-step-circle:before {
    font-family: 'FontAwesome';
    font-weight: 100;
    content: "\f00c";
}

.md-stepper-horizontal .md-step.done .md-step-circle *,
.md-stepper-horizontal .md-step.editable .md-step-circle * {
    display: none;
}

.md-stepper-horizontal .md-step.editable .md-step-circle {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.md-stepper-horizontal .md-step.editable .md-step-circle:before {
    font-family: 'FontAwesome';
    font-weight: 100;
    content: "\f040";
}

.md-stepper-horizontal .md-step .md-step-title {
    margin: 8px auto;
    font-size: 8px;
    left: 10%;
    right: 10%;
    position: absolute;
    color: var(--accent);
}

.md-stepper-horizontal .md-step .md-step-title,
.md-stepper-horizontal .md-step .md-step-optional {
    text-align: center;
    color: rgba(0,0,0,.26);
}

.md-stepper-horizontal .md-step.active .md-step-title {
    font-weight: 600;
    color: rgba(0,0,0,.87);
}

.md-stepper-horizontal .md-step.active.done .md-step-title,
.md-stepper-horizontal .md-step.active.editable .md-step-title {
    font-weight: 600;
}

.md-stepper-horizontal .md-step .md-step-optional {
    font-size: 12px;
}

.md-stepper-horizontal .md-step.active .md-step-optional {
    color: rgba(0,0,0,.54);
}

.md-stepper-horizontal .md-step .md-step-bar-left,
.md-stepper-horizontal .md-step .md-step-bar-right {
    position: absolute;
    top: 36px;
    height: 1px;
    border-top: 1px solid #DDDDDD;
}

.md-stepper-horizontal .md-step .md-step-bar-right {
    right: 0;
    left: 50%;
    margin-left: 20px;
}

.md-stepper-horizontal .md-step .md-step-bar-left {
    left: 0;
    right: 50%;
    margin-right: 20px;
}

/*********************************************************/
.select {
    width: 18em;
    min-width: 8em;
    margin: 0 auto;
    margin-top: 1.4em;
    padding-right: 2em;
}

.select-title {
    position: relative;
    display: inline-block;
    cursor: pointer;
    background-color: var(--background-color) !important;
}

.select-title:hover + .select-list {
    display: block;
}

.select-list {
    background: var(--background-color);
    border: 1px solid #ddd;
    width: 18em;
    min-width: 8em;
    margin: 0 auto;
    border-radius: 1%;
    display: none;
    position: absolute;
}

.select-list:hover {
    display: block;
}

.select-item {
    padding: 3% 5%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

select-item:first-child {
    border-top: none;
}

select-item:last-child {
    border-bottom: none;
}

.select-item:hover {
    background-color: var(--accent)!important;
}

button:disabled {
    cursor: not-allowed;
}

.input-disabled {
    pointer-events: all;
    cursor: not-allowed;
    background-color: #d4d4d4 !important;
}

.language-form {
    display: inline;
    width: fit-content;
}
button.bg-accent:hover, a.bg-accent:hover {
    background-color: var(--accent-dark) !important;
}
.language-form button {
    color: var(--accent);
    background-color: rgba(0,0,0,0);
    text-decoration: underline;
    border: none;
    cursor: pointer;
}
.language-form button:hover{
    transition: 0.5s;
    color: var(--accent-dark);
}
.language-box {
    display: flex;
    justify-content: end;
    padding: 5px 10px 0 0;
}

.loader {
    width: 30px;
    height: 30px;
    display: none;
}
.hidden {
    display: none !important;
    visibility: hidden;
}
#sail-number-box {
    position: relative;
}
#sail-number-box .loader {
    position: absolute;
    right: 5px;
    top: 27px;
}
#request-rbs-form {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
}
#number-notice {
    text-align: center;
}
#info-box {
    width: 90%;
    margin: 20px auto;
    max-width: 960px;
}
.validation-summary {
    text-align: center;
}
.validation-summary ul {
    list-style-type: none;
}
/*********************************************************/
footer {
    position: absolute;
    width: 100%;
    padding: 10px;
    bottom: 0;
    left: 0;
    text-align: center;
}