/*Common*/

/*Disable edge auto password eye*/
::-ms-reveal {
    display: none;
}

/*#region fonts*/

@font-face {
    font-family: 'Satoshi-Light';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2'), url('../fonts/Satoshi-Light.woff') format('woff'), url('../fonts/Satoshi-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-LightItalic';
    src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2'), url('../fonts/Satoshi-LightItalic.woff') format('woff'), url('../fonts/Satoshi-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'), url('../fonts/Satoshi-Regular.woff') format('woff'), url('../fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Italic';
    src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-Italic.woff') format('woff'), url('../fonts/Satoshi-Italic.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'), url('../fonts/Satoshi-Medium.woff') format('woff'), url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-MediumItalic';
    src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2'), url('../fonts/Satoshi-MediumItalic.woff') format('woff'), url('../fonts/Satoshi-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'), url('../fonts/Satoshi-Bold.woff') format('woff'), url('../fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-BoldItalic';
    src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2'), url('../fonts/Satoshi-BoldItalic.woff') format('woff'), url('../fonts/Satoshi-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Black';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2'), url('../fonts/Satoshi-Black.woff') format('woff'), url('../fonts/Satoshi-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-BlackItalic';
    src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2'), url('../fonts/Satoshi-BlackItalic.woff') format('woff'), url('../fonts/Satoshi-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: italic;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 300.0 to 900.0
*/
@font-face {
    font-family: 'Satoshi-Variable';
    src: url('../fonts/Satoshi-Variable.woff2') format('woff2'), url('../fonts/Satoshi-Variable.woff') format('woff'), url('../fonts/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 300.0 to 900.0
*/
@font-face {
    font-family: 'Satoshi-VariableItalic';
    src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff') format('woff'), url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: italic;
}

/*#endregion*/

@media (max-width: 767.98px) {
    .menu {
        text-align: center;
    }

    .menu-logo {
        font-size: 1.2em;
    }

    .menu-item {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .welcome-block h1 {
        font-size: 2em;
    }

    .main-row > .card {
        width: 100%
    }
}

@media (min-width: 768px) {
    .menu-item {
        display: block;
    }

    .menu-button {
        display: none;
    }

    .main-row > .card {
        width: 75%
    }

    .login-card {
        border-radius: 0px !important;
        height: 100%;
    }

        .login-card .card-body {
            max-width: 500px;
        }
}

html, body {
    font-family: Satoshi-Regular,Roboto,Arial;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

main {
    flex: 1;
}

footer {
    display: flex;
    justify-content: left; /* horizontal align */
    width: 100%;
    padding: .5rem;
}

.footer-img {
    height: 14px;
    padding-left: .5rem;
}

h1, h2, h3, h4 {
    font-family: Satoshi-Bold
}

.icon-form-control {
    position: relative;
}

    .icon-form-control img {
        position: absolute;
        top: 15px;
        left: 25px;
        width: 25px;
        height: 25px;
    }

    .icon-form-control .eye {
        position: absolute;
        top: 20px;
        left: auto;
        right: 25px;
        width: 25px;
        height: 25px;
        cursor: pointer;
    }

.openappbutton {
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card {
    cursor: pointer;
    transition: all 0.5s;
}

    .product-card:hover {
        border-color: #1779ba;
    }

        .product-card:hover .openappbutton {
            opacity: 1;
        }

.main-row > .card {
    max-width: 850px;
    margin-left: 15px;
    margin-right: 15px;
}

.main-row {
    margin-left: 15px;
    margin-right: 15px;
}

.login-card {
}

    .login-card h2 {
        color: rgb(0, 0, 70) !important;
    }

.login-control {
    padding: 20px;
    height: 64px !important;
    border-radius: 12px;
}

.icon-input {
    position: relative;
}

    .icon-input i {
        position: absolute;
        left: 28px;
        top: 10px;
        color: gray;
    }


.login-card .icon-input .bi {
    font-size: 1.6rem;
    color: var(--gray);
}

.btn-comax {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    font-family: inherit;
    padding: .85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color .25s ease-out, color .25s ease-out;
    font-size: .9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #1779ba;
    color: #fefefe
}

    .btn-comax:focus,
    .btn-comax:hover {
        background-color: #14679e;
        color: #fefefe;
        text-decoration: none !important;
    }

.btn-primary {
    border-color: rgba(23, 121, 186, 1);
    color: rgba(23, 121, 186, 1);
    background: none;
    box-shadow: none !important;
}

    .btn-primary:hover {
        color: rgba(23, 121, 186, 1);
        background-color: rgba(0, 133, 189, 0.058823529411764705);
    }

    .btn-primary:focus {
        color: rgba(23, 121, 186, 1) !important;
        background-color: rgba(0, 133, 189, 0.058823529411764705) !important;
    }

.btn-comax-primary {
    margin-bottom: 0;
    height: 64px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 40px;
    border: none;
    transition: all .4s ease-in-out;
    background: #1E1C4D;
    background: linear-gradient(125deg,rgba(30, 28, 77, 1) 50%, rgba(23, 121, 186, 1) 100%);
    background-size: 200%;
    background-position: 0% 100%;
    box-shadow: none !important;
}

    .btn-comax-primary:hover {
        background-position: 90% 100%
    }

.btn-comax-secondary {
    color: rgba(234, 101, 62, 1);
    border-color: rgba(234, 101, 62, 1);
    box-shadow: none !important;
}

    .btn-comax-secondary:hover {
        color: rgba(234, 101, 62, 1);
        background: rgba(234, 101, 62, 0.058823529411764705);
    }

.dropdown-item-comax {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius:4px;
}

    .dropdown-item-comax:focus {
        color: #16181b;
        background-color: #f8f9fa;
    }

.gravatar-image {
    max-width: none;
}

.top-right-button {
    position: absolute;
    top: 10px;
    right: 15px;
}

.circle-icon {
    border-radius: 40px;
    height: 80px;
    width: 80px;
    border: 1px solid var(--blue);
    align-items: center;
    align-self: center;
    display: flex;
    margin-bottom: 1rem;
}

    .circle-icon h1 {
        color: var(--blue);
        margin: auto;
    }


.comax-gradient-header {
    background: rgb(255,255,255);
    background: linear-gradient(to right, #357BBA -50%, #2A2769 120%);
    background-attachment: fixed;
}

    .comax-gradient-header .header-title {
        font-family: Satoshi-Bold;
        color: rgb(255,255,255);
        text-decoration: none;
    }

.comax-gradient-body-login {
    background: rgb(255,255,255);
    background: linear-gradient(60deg, rgba(255,255,255,1) 0%, #357BBA 30%, #2A2769 70%, #2A2769 100%);
    background-attachment: fixed;
    height: 100%;
}

.card-body {
    border-radius: 10px;
}

.card-title {
    font-family: Satoshi-Medium
}

.card-header {
    background-color: transparent;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    border: 0;
    /* offset-x | offset-y | blur-radius | color */
    box-shadow: .25rem .5rem 1rem rgba(0, 0, 0, .2);
}

.welcome-block {
    max-width: 700px;
}

.logo, .logo:hover {
    text-decoration: none;
}

.col-form-label {
    text-align: right;
    font-weight: bold;
}

@media (max-width: 575px) {
    .col-form-label {
        text-align: left;
    }
}

/*Controls*/
.navbar-brand > img {
    max-height: 31px;
}

.navbar-brand.logo {
    padding: 10px 10px;
}

.navbar-brand-image-mobile {
    display: none;
}

@media (max-width: 767px) {
    .navbar-brand-image {
        display: none;
    }

    .navbar-brand-image-mobile {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
}

.validation-summary-errors {
    background: none;
    padding-top: 14px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid;
}

.switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 54px;
    margin-top: 5px;
}

    .switch input {
        display: none;
    }

.slider {
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

    .slider:before {
        background-color: #fff;
        bottom: 1px;
        content: "";
        height: 26px;
        left: 1px;
        position: absolute;
        transition: .4s;
        width: 26px;
    }

input:not(:checked) + .bg-primary {
    background-color: #ccc !important;
    background-image: none !important;
}

input:checked + .bg-primary {
    background-color: #4ed164 !important;
    background-image: none !important;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

label.radio-img > input {
    visibility: hidden;
    position: absolute;
}

    label.radio-img > input + img {
        cursor: pointer;
        border: 2px solid transparent;
    }

    label.radio-img > input:checked + img {
        background-color: #ffe7ac;
        -ms-border-radius: 15px;
        border-radius: 15px;
    }

    label.radio-img > input:checked ~ h3, label.radio-img > input:checked ~ h4 {
        color: #007bff;
        text-decoration: underline;
    }

label.radio-img > h3, label > h4 {
    cursor: pointer;
}

.cc-window {
    color: #212529;
    background-color: #f7f7f7;
    display: flex;
    padding:5px;
}

.cc-message{
    margin-right:50px;
}

.cc-bottom{
    position:absolute;
    bottom:0px;
    z-index:1000;
    width:100%;
}

.cc-compliance{
    margin-left:auto;
    margin-top:auto;
    margin-bottom:auto;
}

.cc-btn {
    color: #0085bd !important;
}

.cc-invisible{
    display:none;
}

    .cc-btn:hover {
        text-decoration: underline !important;
    }

#qrCode canvas {
    padding: 20px;
    background-color: white;
}

/*Pages*/
.consent-container .toggle-button__input {
    float: left;
}

.consent-container .toggle-button__text {
    float: left;
    margin-top: 6px;
    margin-left: 10px;
}

.consent-container .consent-description {
    width: 100%;
    float: left;
}

.consent-container .client-logo {
    float: left;
}

    .consent-container .client-logo img {
        margin-right: 25px;
    }

.logged-out-container iframe {
    display: none;
    width: 0;
    height: 0;
}

.alert {
    background-color: transparent;
    border-width: 1px 1px 1px 5px;
    color: black;
    font-family: Satoshi-Medium
}

.login-page-icon{
    position:absolute;
    left: 50%;
    top:50px;
    transform: translateX(50%);
    z-index: 1000;
    width:25%;
}
