@font-face {
    font-family: "TomatoGrotesk";
    src: url("../fonts/TomatoGrotesk-Regular.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "TomatoGrotesk";
    src: url("../fonts/TomatoGrotesk-Medium.otf") format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'TomatoGrotesk', sans-serif;
    padding: 0;
    margin: 0;
    --main_color: #000d44;
    --main_color_acc: #12257c;
    --accent_color: #ff7777;
    --page_width: 1180px;
}

#navegacion {
    background-color: var(--main_color);
    /* padding: 35px 50px 10px 50px; */
    display: flex;
}

#navegacion nav {
    width: 100%;
    max-width: var(--page_width);
    margin: auto;
}

#navegacion nav .nav_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0% 3%;
}

#navegacion ul {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    list-style: none;
    color: white;
}

#navegacion ul.mobile-nav {
    display: none;
}

#logo {
    padding: 35px 0px 8px 0px;
}

#navegacion ul li {
    /* padding: 45px 25px 25px 25px; */
    font-weight: normal;
    transition: 0.3s;
}

#navegacion ul li a {
    padding: 45px 25px 17px 25px;
    display: block;
    font-weight: normal;
    transition: 0.3s;
}

.menu-icon {
    padding: 25px 15px 10px 15px;
    position: relative;
    top: 3px;
}

.sep-opt:before {
    content: url('../img/sep-2.png');
    position: relative;
    z-index: 99;
    left: -10px;
    top: 2px;
}

.login-opt:before {
    content: url('../img/sep-2.png');
    position: relative;
    z-index: 99;
    left: -10px;
    top: 2px;
}

.plus-opt:before {
    content: url('../img/plus-2.png');
    position: relative;
    z-index: 99;
    left: -10px;
    top: 2px;
}

#navegacion ul li a:hover {
    background-color: #1a5eaf;
    transition: 0.3s;
    cursor: pointer;
}

#navegacion ul a {
    color: white;
    font-weight: normal;
    font-size: 15px;
    ;
    text-decoration: none;
}

a.selected {
    background-color: #1a5eaf;
}

#cabecera {
    background-image: url('../img/header-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    height: 480px;
    padding-top: 80px;
}

@media (max-width: 899px) {
    #cabecera {
        background-position-x: center;
    }
}

#cabecera.cabecera_customer {
    background-image: url('../img/header-customer-bg.jpg') !important;
}

#cabecera.cabecera_assistance {
    background-image: url('../img/cabecera-assistance.jpg') !important;
}

@media (max-width: 600px) {
    #access_li a {
        padding-right: 8px !important;
    }
}

.row {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: var(--page_width);
    margin: auto;
}

.row-top {
    align-items: unset;
}

.normal_section,
.footer_section {
    padding: 50px 10px 50px 10px;
}

#footer_logo {
    width: 150px !important;
    max-width: 80% !important;
    margin-top: 15px !important;
}

#footer_logo img {
    width: 100% !important;
}

.footer_section a {
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    margin: 5px 0px 5px 10px;
}

#footer_part_1 {
    background-color: #f1f0ed;
}

#footer_part_1 * {
    color: #000d44 !important;
}

#footer_part_2,
#footer_part_3 {
    background-color: #000d44;
}

#footer_part_2 *,
#footer_part_3 * {
    color: white !important;
}

#footer_part_3 {
    border-top: 1px solid white;
    padding: 0;
}

#footer_part_3 .clm-inner {
    padding: 10px 10px;
}

#footer_part_3 a {
    text-decoration: none;
    font-size: 11px;
    display: inline-block;
    margin: 5px 0px 5px 10px;
}

.clm {
    width: 50%;
}

.footer_section .clm {
    width: 25%;
}

.clm-inner {
    width: auto;
    padding: 5%;
}

.footer_section .clm-inner {
    display: flex;
    flex-direction: column;
}

.clm-img {
    text-align: center;
}

.clm-img img {
    width: 100%;
    max-width: 460px;
}

.clm-img-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

h1 {
    color: var(--main_color);
    font-weight: normal;
    font-size: 54px;
}

h2 {
    color: var(--main_color);
    font-weight: bold;
    font-size: 36px;
    margin-top: 20px;
}

h3 {
    color: var(--main_color);
    font-weight: normal;
    font-size: 26px;
}

p {
    color: var(--main_color);
    font-weight: normal;
    font-size: 18px;
}

.btn {
    background-color: var(--main_color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: normal;
}

.btn:hover {
    background-color: var(--main_color_acc);
    transition: 0.3s;
}

.btn-sec {
    background-color: var(--accent_color);
    color: var(--main_color);
    padding: 15px 40px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.btn-neutral {
    color: var(--main_color);
    padding: 15px 40px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.icon-list {
    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 460px;
}

.icon-list div {
    display: flex;
    flex-wrap: nowrap;
    align-items: top;
    margin: 15px 0px;
}

.icon-list img {
    height: 16px;
    position: relative;
    top: 0px;
}

.icon-list p {
    margin: 0;
    margin-left: 8px;
}

#more_than {
    padding-top: 80px;
}

.gray-text {
    color: #adadad;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.reverse-img {
    display: block;
    width: 100%;
}

.reverse-img-alt {
    display: none;
    width: 100%;
    margin-top: 25px;
}

.page-wrapper {
    /*
    display: flex;
    direction: column;
    justify-content: center;
    align-items: center;
    */
    width: 100%;
}

.iframe-wrapper {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: white !important;
}

.form-wrapper {
    margin-top: 30px;
    /* max-width: 420px; */
    width: auto;
    padding: 35px;
    /* box-shadow: 0px 0px 8px #0001; */
}

#reg-form,
#del-form,
#confirmation-form {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    margin: auto;
}

#reg-form input,
#del-form input,
#confirmation-form input {
    /* width: 100%; */
    display: block;
    padding: 15px 25px;
    margin: 5px 0px !important;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

#reg-form input[type=submit]:hover,
#del-form input[type=submit]:hover,
#confirmation-form input[type=submit]:hover {
    cursor: pointer;
}

.gray_section {
    padding: 60px 50px;
    background-color: #f8f8f8;
    width: auto;
    max-width: 800px;
    margin: auto;
}

.my_link {
    color: var(--main_color);
    text-decoration: underline;
    margin-top: 25px;
    display: inline-block;
}

@media (max-width: 991px) {
    #cabecera {
        height: auto;
        padding-top: 20px;
    }

    #navegacion ul.desktop {
        display: none;
    }

    .clm {
        width: 100%;
    }

    .footer_section .clm {
        width: 50%;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }

    #more_than {
        padding: 40px 25px 40px 25px;
    }

    .reverse-img {
        display: none;
    }

    .reverse-img-alt {
        display: block;
        max-width: 400px;
    }

    .normal_section,
    .footer_section {
        padding: 30px 10px 30px 10px;
    }

    #navegacion ul.desktop-nav {
        display: none;
    }

    #navegacion ul.mobile-nav {
        display: flex;
    }

    .iframe-wrapper iframe {
        /* height: 460px !important; */
    }
}

/* Spinner CSS */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 4px;
    border: 4px solid #237aba;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #237aba transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Spinner CSS (end) */