@font-face {
    font-family: "scs-icons";
    src: url("../fonts/sancristobal-iconfont.woff") format("woff");
}

input[type="text"]:disabled,
input[type="search"]:disabled,
input[type="date"]:disabled,
input[type="email"]:disabled,
input[type="number"]:disabled {
    background: #F5F5F5;
    color: #bcbcbc;
    border: 1px solid #EDEDED;
}

input, textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.scs__header {
    background: #171669;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #0062b3;
}

.scs__header-logo {
    display: block;
    margin: 0 auto;
    height: 45px;
}

.scs__modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}

.scs__modal--visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scs__modal--visible .scs__modal-overlay {
    -webkit-animation: fade-to-black .2s ease-in;
    animation: fade-to-black .2s ease-in;
}

@-webkit-keyframes fade-to-black {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-to-black {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scs__modal-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.scs__modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #FFFFFF;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    max-height: 90%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.scs__modal-content {
    overflow: auto;
    min-height: 300px;
    max-height: 70vh;
}

.scs__sticky-tabs {
    background: #171669;
}

.scs__sticky-tabs-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 105px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.scs__sticky-tabs-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Montserrat", sans-serif;
    width: 100%;
    position: relative;
    top: -5px;
    text-decoration: none;
    -webkit-transition: font-size .2s ease, color .2s ease;
    transition: font-size .2s ease, color .2s ease;
}

    .scs__sticky-tabs-item::before {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.5);
        width: 50px;
        height: 2px;
        bottom: -11px;
    }

.scs__sticky-tabs-item--active {
    color: #FFFFFF;
    font-size: 20px;
}

    .scs__sticky-tabs-item--active::before {
        content: "";
        position: absolute;
        background: #FFFFFF;
        width: 100px;
        height: 2px;
        bottom: -11px;
    }

.scs__sticky-tabs-policyholder {
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    right: 0;
    font-weight: bold;
}

.scs__loading-linear {
    position: relative;
    width: 100%;
    height: 100%;
}

@-webkit-keyframes scs-loading-linear_first {
    0% {
        left: -100%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

@keyframes scs-loading-linear_first {
    0% {
        left: -100%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

@-webkit-keyframes scs-loading-linear_second {
    0% {
        left: -150%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

@keyframes scs-loading-linear_second {
    0% {
        left: -150%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

.scs__loading-linear::before {
    content: '';
    position: absolute;
    height: 100%;
    background: #171669;
    -webkit-animation: scs-loading-linear_first 3s infinite ease-out;
    animation: scs-loading-linear_first 3s infinite ease-out;
}

.scs__loading-linear::after {
    content: '';
    position: absolute;
    height: 100%;
    background: #47acff;
    -webkit-animation: scs-loading-linear_second 3s infinite ease-in;
    animation: scs-loading-linear_second 3s infinite ease-in;
}

.scs__loading-linear-container {
    overflow: hidden;
    width: 50%;
    height: 4px;
    background: #c2e3ff;
    margin: 20px auto;
}

.scs__text {
    color: #9e9e9e;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.scs__main-title {
    margin: 5px 0;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #536279;
}

    .scs__main-title::first-letter {
        text-transform: uppercase;
    }

/*.scs__main-title--active {
    color: #001c33;
}*/

.scs__sub-title {
    font-family: "Montserrat", sans-serif;
    color: #bdbdbd;
    margin: 20px 0;
    font-weight: bold;
    text-transform: lowercase;
    font-size: 18px;
}

    .scs__sub-title::first-letter {
        text-transform: uppercase;
    }

.scs__sub-title--active {
    color: #001c33;
}

.scs__container {
    width: calc(100% - 288px);
    max-width: 1100px;
    margin: 0 auto;
    margin-left: 288px;
    padding: 30px;
    overflow-x: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.scs__select {
    position: relative;
}

    .scs__select label {
        font-size: 14px;
        line-height: 16px;
        display: block;
        cursor: pointer;
        color: #001c33;
        font-family: "Open Sans", sans-serif;
        margin: 0 0 10px 0;
    }

    .scs__select select {
        background: #FFFFFF;
        height: 40px;
        background-image: none;
        /*-webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;*/
        padding: 0 16px;
        outline: none;
        width: 100%;
        border-radius: 3px;
        border: solid 1px #c1c7d5;


        min-width: 60%;


         font-family: Roboto;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.71;
      letter-spacing: normal;
      color: #536279;
    }

        .scs__select select:focus {
            outline: #171669 solid 1px;
        }

        .scs__select select:disabled {
            background: #F5F5F5;
            color: #bcbcbc;
            border: 1px solid #EDEDED;
        }

.scs__select--margin-bottom {
    margin: 0 0 50px 0;
}

.scs__select--loading::before {
    content: "";
    background: url("../img/scs-spinner.gif") no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    background-size: 100%;
    right: 2px;
    top: 27px;
}

.scs__input {
    font-family: "Open Sans", sans-serif;
    background: #FFFFFF;
    border: 1px solid #bdbdbd;
    height: 38px;
    color: #001c33;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    padding: 0 0 0 16px;
    outline: none;
    width: 100%;
}

    .scs__input:focus {
        outline: #171669 solid 2px;
    }

    .scs__input:disabled {
        background: #F5F5F5;
        color: #bcbcbc;
        border: 1px solid #EDEDED;
    }

.scs__input--no-border {
    border: 1px solid transparent;
    padding: 0;
}

    .scs__input--no-border:focus {
        outline: transparent solid 2px;
    }

.scs__input--no-padding {
    padding-right: 0;
}

.scs__textarea {
    font-family: "Open Sans", sans-serif;
    background: #FFFFFF;
    border: 1px solid #bdbdbd;
    color: #001c33;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    padding: 16px;
    outline: none;
    width: 100% !important;
}

    .scs__textarea:focus {
        outline: #171669 solid 2px;
    }

    .scs__textarea:disabled {
        background: #F5F5F5;
        color: #bcbcbc;
        border: 1px solid #EDEDED;
    }

.scs__textarea--width-by-cols {
    width: auto !important;
}

.scs__textarea--no-rezise {
    resize: none;
}

.scs__card {
    border: 1px solid #bdbdbd;
    border-radius: 1px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background: #FFFFFF;
    -webkit-transition: background .2s ease-in;
    transition: background .2s ease-in;
    margin: 0 auto 20px auto;
}

    .scs__card:hover {
        background: #E8F0FA;
    }

.scs__card-title {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
}

.scs__card-text {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin: 0 0 10px 0;
    color: #9e9e9e;
}

.scs__card-text--bold {
    color: #001c33;
    font-weight: bold;
}

.scs__card--active {
    border: 2px solid #171669;
    background: #E8F0FA;
}

    .scs__card--active .scs__card-text {
        color: #171669;
    }

.scs__label-select {
    background: none;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    outline: none;
    margin: 0 0 4px;
}

.scs__radio-button {
    padding: 12px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #171669;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background .2s ease-in;
    transition: background .2s ease-in;
    text-transform: uppercase;
}

    .scs__radio-button:hover {
        background: #edf7ff;
    }

.scs__radio-button-pills {
    border: 2px solid #171669;
    border-radius: 0px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 20px 0 0 0;
}

.scs__radio-button-pills--disabled {
    background: #F5F5F5;
    border: 2px solid #bdbdbd;
}

    .scs__radio-button-pills--disabled .scs__radio-button {
        color: #bcbcbc;
        cursor: not-allowed;
    }

        .scs__radio-button-pills--disabled .scs__radio-button:hover {
            background: #F5F5F5;
        }

.scs__radio-button-pills--no-margin {
    margin: 0;
}

.scs__radio-button-label {
    position: relative;
    display: inline-block;
}

.scs__radio-button-input {
    position: absolute;
    opacity: 0;
}

.scs__radio-button--active {
    background: #171669;
    color: #FFFFFF;
}

    .scs__radio-button--active:hover {
        background: #171669;
    }

.scs__checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin: 0 30px 30px 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Open Sans", sans-serif;
    line-height: 24px;
}

.scs__checkbox-container {
    margin: 0 0 30px 0;
}

.scs__checkbox-container-title {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0 20px 0;
}

.scs__checkbox-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.scs__checkbox-wrapper--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.scs__checkbox-input {
    position: absolute;
    opacity: 0;
}

.scs__checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

    .scs__checkbox-checkmark:hover input ~ .scs__checkbox-checkmark-checkmark {
        background-color: #ccc;
    }

    .scs__checkbox-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.scs__checkbox-input:checked ~ .scs__checkbox-checkmark {
    background-color: #171669;
}

    .scs__checkbox-input:checked ~ .scs__checkbox-checkmark:after {
        display: block;
    }

.scs__checkbox-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.scs__search {
    position: relative;
}

.scs__search--loading::before {
    content: "";
    background: url("../img/scs-spinner.gif") no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    background-size: 100%;
    margin-left:  150px;
    top: 25px;
}

.scs__search-label {
   
    margin: 0 0 3px 0;

   
  font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #536279;
}

.scs__search-input {
    line-height: 40px;
    padding: 0 16px;
    width: 100%;
    outline: none;
    height: 40px;

    border-radius: 3px;
    border: solid 1px #c1c7d5;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #536279;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .scs__search-input:focus {
        outline: #171669 solid 1px;
    }

.scs__search-results-container {
   
    top: 68px;
    width: calc(100% - 2px);
    z-index: 1;

}

.scs__search-results-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 192px;
    overflow-y: auto;
}

.scs__search-results-list-item {
    font-family: "Open Sans", sans-serif;
    line-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    cursor: pointer;
    color: #171669;
    border-radius: 3px;
    border: solid 1px #67bbf4;
    margin-top: 16px;
}

    .scs__search-results-list-item:hover {
        background: #171669;
        color: #FFFFFF;
    }

.scs__entry {
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.scs__entry--horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.scs__entry--resume {
    min-height: 75px;
}

    .scs__entry--resume .scs__entry-vertical-label {
        color: #9e9e9e;
        margin: 0;
        line-height: 14px;
    }

.scs__entry-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scs__entry-inline-label {
    font-family: "Open Sans", sans-serif;
    padding: 0 14px 0 0;
    min-width: 170px;
    text-transform: lowercase;
    font-size: 12px;
}

    .scs__entry-inline-label::first-letter {
        text-transform: uppercase;
    }

.scs__entry-inline-input {
    background-color: #FFFFFF;
    border: 1px solid #bdbdbd;
    line-height: 36px;
    padding: 0 14px;
    font-family: "Open Sans", sans-serif;
    outline: none;
    position: relative;
}

    .scs__entry-inline-input:focus::before {
        content: "";
        position: absolute;
        border: 2px solid #171669;
        top: -2px;
        left: -2px;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

.scs__entry-inline--error {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    color: #B20000;
    margin: 5px 0 15px 0;
    display: none;
}

.scs__entry-vertical-label {
    /*margin: 0 0 10px 0;*/
    display: block;


    font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #536279;
}

    .scs__entry-vertical-label::first-letter {
        text-transform: uppercase;
    }

.scs__date-range {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.scs__date-range-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.scs__date-range-inline-label {
    font-family: "Open Sans", sans-serif;
    padding: 0 14px;
    text-transform: lowercase;
    font-size: 12px;
    line-height: 40px;
}

    .scs__date-range-inline-label::first-letter {
        text-transform: uppercase;
    }

.scs__date-range-inline-input {
    line-height: 36px;
    padding: 0 14px;
    outline: none;
    position: relative;
    height: 40px;
    max-width: 140px;

    border-radius: 3px;
    border: solid 1px #c1c7d5;

    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    color: #536279;

}

    .scs__date-range-inline-input:focus::before {
        content: "";
        position: absolute;
        border: 1px solid #171669;
        top: -2px;
        left: -2px;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

.scs__date-range-inline-input--small {
    line-height: 34px;
}

.scs__date-range-vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 5px 0 0;
}

.scs__date-range-vertical-label {
   

    font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #536279;
}

    .scs__date-range-vertical-label::first-letter {
        text-transform: uppercase;
    }

.scs__date-range-vertical-input {
    background-color: #FFFFFF;
    border: 1px solid #bdbdbd;
    line-height: 36px;
    padding: 0 14px;
    font-family: "Open Sans", sans-serif;
    outline: none;
    position: relative;
}

    .scs__date-range-vertical-input:focus::before {
        content: "";
        position: absolute;
        border: 2px solid #171669;
        top: -2px;
        left: -2px;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

.scs__search-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

    .scs__search-button-container .scs__search {
        width: 100%;
    }

    .scs__search-button-container .scs__button {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        height: 42px;
        position: relative;
    }

    .scs__search-button-container .scs__search-results-container {
        top: 68px;
    }

.scs__radio {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin: 0 30px 30px 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Open Sans", sans-serif;
    line-height: 24px;
}

.scs__radio-container {
    margin: 0 0 30px 0;
}

.scs__radio-container-title {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0 20px 0;
}

.scs__radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.scs__radio-wrapper--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.scs__radio-input {
    position: absolute;
    opacity: 0;
}

.scs__radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

    .scs__radio-checkmark:hover input ~ .scs__radio-checkmark-checkmark {
        background-color: #ccc;
    }

    .scs__radio-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

.scs__radio-input:checked ~ .scs__radio-checkmark {
    background-color: #171669;
}

    .scs__radio-input:checked ~ .scs__radio-checkmark:after {
        display: block;
    }

.scs__radio-checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF;
}

.scs__button {
    background: #3E4BEE;
    line-height: 48px;
    border: none;
    font-family: "Open Sans", sans-serif;
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 0 35px;
    /*outline: none;*/
    margin: 0 0 20px 0;
    text-transform: lowercase;
    cursor: pointer;
}

    .scs__button::first-letter {
        text-transform: uppercase;
    }

    .scs__button:hover {
        background: #0A17B6;
    }

    .scs__button:disabled {
        background: #bdbdbd;
        color: #FFFFFF;
        cursor: not-allowed;
    }

.scs__button--no-margin {
    margin: 0;
}

.scs__button--margin-right {
    margin: 0 10px 0 0;
}

.scs__button--link {
    background: transparent;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: normal;
    color: #3E4BEE;
    padding: 0px;
    margin: 0px;
}

    .scs__button--link:disabled {
        background: transparent;
        color: #bcbcbc;
        cursor: not-allowed;
    }

        .scs__button--link:disabled:hover {
            color: #bcbcbc;
            background: transparent;
        }

    .scs__button--link:hover {
        color: #0479da;
        background: transparent;
    }

.scs__button--bordered {
    background: #FFFFFF;
    color: #3E4BEE;
    border: 1px solid #3E4BEE;
    padding: 0 16px;
    line-height: 46px;
}

    .scs__button--bordered:disabled {
        background: #F5F5F5;
        color: #bcbcbc;
        cursor: not-allowed;
        border: 1px solid #EDEDED;
    }

        .scs__button--bordered:disabled:hover {
            background: #F5F5F5;
            color: #bcbcbc;
        }

    .scs__button--bordered:hover {
        color: #FFFFFF;
        background: #0A17B6;
    }

.scs__button--icon {
    height: 48px;
    padding: 0 20px;
}

    .scs__button--icon img {
        width: 15px;
    }

.scs__button--icon-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scs__button--icon .scs__icon {
    color: #FFFFFF;
    font-size: 20px;
    padding: 0 8px;
    line-height: normal;
}

.scs__button--icon-text {
    display: inline-block;
    font-family: "Open Sans", sans-serif !important;
    font-size: 14px !important;
    line-height: normal;
}

    .scs__button--icon-text::first-letter {
        text-transform: capitalize;
    }

.scs__button--loading {
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    cursor: not-allowed;
    background: #F5F5F5;
}

    .scs__button--loading::before {
        content: "";
        background: #F5F5F5;
        background-image: url("../img/scs-spinner.gif");
        background-size: 50px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }

.scs__button--invisible {
    visibility: hidden;
}

.scs__divider {
    border-bottom: 1px solid #EDEDED;
    border-top: none;
    margin: 32px 0;
}

.scs__icon {
    font-family: scs-icons;
    color: #BCBCBC;
    font-size: 30px;
}

.scs__icon--active {
    color: #171669;
}

.scs__icon--2x {
    font-size: 50px;
}

.scs__icon--car::before {
    content: "\e901";
}

.scs__icon--truck::before {
    content: "\e902";
}

.scs__icon--trailer::before {
    content: "\e900";
}

.scs__icon--motorcycle::before {
    content: "\e904";
}

.scs__icon--printer::before {
    content: "\e935";
}

.scs__icon--screen-check::before {
    content: "\e919";
}

.scs__icon--credit-card::before {
    content: "\e91c";
}

.scs__icon--cash::before {
    content: "\e923";
}

.scs__icon--money::before {
    content: "\e92d";
}

.scs__icon--fire::before {
    content: "\e929";
}

.scs__icon--user::before {
    content: "\e941";
}

.scs__icon--car-crown::before {
    content: "\e912";
}

.scs__icon--handcuffs::before {
    content: "\e93b";
}

.scs__icon--car-fast::before {
    content: "\e939";
}

.scs__vehicle-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.scs__vehicle-tab-item {
    width: 120px;
    height: 80px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.scs__vehicle-tab-item-text {
    color: #bdbdbd;
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    margin: 5px 0 0 0;
}

.scs__vehicle-tab-item--active .scs__vehicle-tab-icon,
.scs__vehicle-tab-item--active .scs__vehicle-tab-item-text {
    color: #171669;
}

.scs__vehicle-tab-icon {
    display: block;
}

.scs__input-button-combo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .scs__input-button-combo .scs__radio-button-pills {
        max-height: 36px;
        min-width: 200px;
        margin: 23px 0 0 0;
    }

    .scs__input-button-combo .scs__radio-button {
        width: 100%;
    }

    .scs__input-button-combo .scs__input {
        height: 40px;
    }

.scs__table {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    border-spacing: 0px;
    border-collapse: collapse;
    position: relative;
}

.scs__table-header {
    font-size: 12px;
    color: #8993A4;
    border-bottom: 2px solid #E1E1E1;
    font-family: "Open Sans", sans-serif;
}

.scs__table-header-cell {
    text-align: left;
    padding: 16px 0;
    font-weight: 400;
}

.scs__table-header-cell--col-1 {
    width: 10%;
}

.scs__table-header-cell--col-2 {
    width: 50%;
}

.scs__table-header-cell--col-3 {
    width: 6%;
}

.scs__table-header-cell--col-4 {
    width: 14%;
}

.scs__table-header-cell--col-5 {
    text-align: center;
    width: 20%;
    min-width: 190px;
}

.scs__table-header--fixed .scs__table-header-cell {
    display: table-cell;
}

.scs__table-header--fixed .scs__loading-linear-container {
    margin: 0;
    width: 100%;
}

.scs__table-header--fixed.hl-sticky.is-sticky {
    background: #FFFFFF;
    height: auto;
}

.scs__table-row {
    color: #8f8f8f;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid #E1E1E1;
    cursor: pointer;
}

    .scs__table-row:hover .scs__table-cell,
    .scs__table-row:hover .scs__table-cell--plan,
    .scs__table-row:hover .scs__table-cell--price {
        color: #171669;
    }

.scs__table-row--selected {
    color: #171669;
    font-weight: bold;
}

    .scs__table-row--selected .scs__table-cell--plan,
    .scs__table-row--selected .scs__table-cell--price {
        color: #171669;
    }

.scs__table-row--loading {
    background: #F5F5F5;
    pointer-events: none;
    overflow: hidden;
}

    .scs__table-row--loading .scs__table-cell {
        color: #bcbcbc;
    }

    .scs__table-row--loading .scs__table {
        table-layout: fixed;
    }

    .scs__table-row--loading .scs__loading-linear-container {
        position: absolute;
        width: 100vw;
        bottom: 0px;
        margin: 0;
        left: 0;
    }

.scs__table-cell {
    /*padding: 32px 16px 32px 0;*/
    position: relative;
}

.scs__table-cell--plan {
    font-size: 20px;
    font-weight: 700;
    color: #001c33;
    padding: 20px 10px;
}

.scs__table-cell--price {
    color: #001c33;
    font-size: 14px;
    font-weight: bold;
    /*padding: 32px 20px 32px 0;*/
}

.scs__table-cell--price-rate {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #8993A4;
    margin: 6px 0 0 0;
}

.scs__table-cell--button {
    /*padding: 32px 0 32px 32px;*/
}

.scs__table-cell-error {
    position: absolute;
    background: #F5F5F5;
    padding: 5px;
    border-radius: 3px;
    width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    z-index: 1;
    border: 1px solid #EDEDED;
}

.scs__table-cell-error-image {
    width: 20px;
    opacity: .6;
    margin: auto 10px;
}

.scs__table-cell-error-text {
    color: #9e9e9e;
    font-size: 12px;
    font-weight: 400;
}

    .scs__table-cell-error-text::first-letter {
        text-transform: capitalize;
    }

.scs__panel--padding-right {
    padding: 0 20px 0 0;
}

.scs__panel-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.scs__panel-container-margin-bottom {
    margin-bottom: 24px
}

.scs__panel-container--to-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.scs__panel-container--to-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.scs__panel-half {
    width: 100%;
    max-width: 50%;
}

.scs__panel-quarter {
    width: 100%;
    max-width: 25%;
}

.scs__panel-three-quarter {
    width: 100%;
    max-width: 75%;
}

.scs__panel-third {
    width: 100%;
    max-width: 33.33%;
}

.scs__overlay-container {
    position: relative;
}

.scs__overlay--active-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    background-image: url("../img/loading_precotizacion.gif");
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
}

.scs__overlay--active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    left: 0;
    top: 0;
}

.scs__resume-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid #bdbdbd;
    min-height: 50px;
    margin: 0 0 10px 0;
}

.scs__resume-header-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    color: #001c33;
    margin: 0 30px 0 0;
}

.scs__resume-header-text {
    font-family: "Open Sans", sans-serif;
    color: #9e9e9e;
    font-size: 14px;
}

.scs__resume-icon-list {
    min-height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scs__resume-icon-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 10px auto;
}

.scs__resume-icon-list-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto auto auto 10px;
}

.scs__resume-icon-list-item-title {
    font-family: "Open Sans", sans-serif;
    color: #001c33;
    font-size: 12px;
}

.scs__resume-icon-list-item-text {
    font-family: "Open Sans", sans-serif;
    color: #9e9e9e;
    font-size: 12px;
}

.scs__resume-icon-list-item .scs__icon {
    border: 2px solid #bdbdbd;
    padding: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
}

.scs__resume-list {
    padding: 0 0 0 20px;
    list-style-type: disc;
}

.scs__resume-list-item {
    color: #001c33;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.scs__resume-ticket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
    padding: 0 0 0 20px;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
}

    .scs__resume-ticket .scs__divider {
        margin: 20px 0;
    }

.scs__resume-ticket-price {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 36px;
    margin: 10px 0;
}

.scs__resume-ticket-text {
    line-height: 20px;
}

.scs__resume-ticket-text--secondary {
    color: #9e9e9e;
}

@media screen and (max-width: 992px) {
    .scs__container {
        padding: 0 10px;
        overflow: hidden;
    }

    .scs__sticky-tabs-container {
        padding: 0 10px;
    }

    .scs__sticky-tabs-policyholder {
        right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .scs__panel-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .scs__panel-half {
        max-width: 100%;
    }

    .scs__panel--padding-right {
        padding: 0;
    }

    .scs__panel-container--to-bottom {
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal;
    }

    .scs__sticky-tabs-policyholder {
        font-size: 12px;
        font-weight: normal;
    }
}

@media screen and (max-width: 600px) {
    .scs__sticky-tabs-item--active {
        font-size: 14px;
    }

    .scs__sticky-tabs-item {
        font-size: 10px;
    }

        .scs__sticky-tabs-item::before {
            width: 20px;
        }

    .scs__panel-three-quarter {
        max-width: 100%;
    }

    .scs__panel-quarter {
        max-width: 50%;
    }

    .scs__panel-container.scs__resume-icon-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}




.sc-nav-main {
    width: 64px;
    height: 100%;
    position: fixed;
    background-color: #025499;
}

.step {
    width: 224px;
    height: 100%;
    position: fixed;
    margin-left: 64px;
    background-color: #edf0f5;
}


.step-item-size {
    width: 208px;
    height: 24px;
    padding-top: 14px;
    padding-bottom: 10px;
    padding-left: 16px;
    cursor: pointer;
}


.step-name {
    width: 141px;
    height: 24px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #536279;
    float: left;
    margin-left: 19px;
}

.step-number {
    width: 19px;
    height: 24px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #536279;
    float: left;
    text-align: center;
}


.subtitle {
    width: 592px;
    height: 32px;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #536279;
}

.subtitle2 {
    width: auto;
    height: 24px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #8993a4;
}

.menu-title {
    width: 192px;
    height: 23px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #536279;
}


.sc-input-select {
    width: 156px;
    height: 40px;
    border-radius: 3px;
    border: solid 1px #c1c7d5;
    background-color: #ffffff;
}

.side-menu {
    width: 156px;
    height: 40px;
    border-radius: 3px;
    border: solid 1px #c1c7d5;
    background-color: #ffffff;
}

.menu-main-info {
    height: 131px;
}

.menu-title {
    margin-top: 30px;
    margin-left: 16px;
    margin-right: 16px;
    width: 192px;
    height: 23px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #536279;
}

.ramo {
    width: 192px;
    height: 24px;
    font-family: Roboto;
    margin-left: 16px;
    margin-right: 16px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #536279;
}

.transaccion {
    width: 192px;
    height: 24px;
    font-family: Roboto;
    font-size: 12px;
    margin-left: 16px;
    margin-right: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: normal;
    color: #536279;
}

.menu-divider {
    width: 208px;
    height: 1px;
    background-color: #d7deed;
}

.info-warning-title {    
    font-family: Roboto;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #536279;
}

.info-warning-text {
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #8993a4;
}

.info-warning {
    max-width: 672px;
    height: auto;
    border-radius: 3px;
    background-color: #edf0f5;
    padding:11px;
    padding-left:40px;
    padding-right:26px;
    margin-bottom:24px;
}

.aclaracion {
    font-family: Roboto;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #8993a4;
}

input[type="date"]::-webkit-inner-spin-button
/*input[type="date"]::-webkit-calendar-picker-indicator */
{
    display: none;
    -webkit-appearance: none;
}



input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.closeWindow {
    position: absolute;
    margin-top: 40px;
    margin-left: 24px;

}


.tab-active {
  width: 5px;
  height: 48px;
  position: absolute;
  background-color: #3dcc98;
}

.step-done {
    position: absolute;
    margin-top: 2px;
}

.search-box-input {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    float: left;
    width: auto;

}

.search-box-button {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    float: left;

}

.search-button-icon {
    height: 42px;

}

.help-link {
    left: 24px;
    bottom: 76px;
    position: absolute;
}

.logo-main-nav {
    left: 17px;
    bottom: 20px;
    position: absolute;
}

.cotizacion-title {
    font-family: Montserrat;
  font-size: 24px;
  font-weight: 800;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #536279;
}

.cobertura-item {

  height: auto;
  min-height: 50px;
  border-radius: 3px;
  box-shadow: 0 12px 10px -12px rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #e0e5ed;
  background-color: #ffffff;
  margin-top: 32px;
  padding: 33px;
}

.cobertura-title {
    font-family: Roboto;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #536279;
}

.cobertura-detail {
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: normal;
    color: #536279;
}

.cobertura-bottom-link {

}

.cobertura-bottom-button {
    float: right;
    margin-left: 8px;
    margin-right: 8px;
}


.selectedRiskInfo {

}

.cobertura-cotizacion {
    position: absolute;
}

.cotizar-button {
    float: right;
}

.cotizar-precio {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: right;
    color: #536279;
    float: right;
}

.cotizar-precio-subtitulo {
    font-family: Roboto;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: right;
    color: #8993a4;
}


.submission-info-subtitle {
    font-family: Roboto;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #536279;
    margin-bottom: 32px;
}

.resumen-info-cliente {
    margin-top: 24px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #8993a4;
}

.resumen-info-riesgo {
    margin-top: 24px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #8993a4;
}

.edit-button {
    float: right;
    position: relative;
    z-index: 1000;
}

.step-item-size-active {
    background: #fff;
}

.alternativa-comercial-modal-title {
    font-size: 20px;
  font-weight: 800;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  color: #536279;
}

/*# sourceMappingURL=styles.css.map */
