﻿html, body {
    height: 100%;
}

/*#region TYPOGRAPHY */
@font-face {
    font-family: Roboto;
    src: url("../assets/fonts/Roboto/Roboto-Regular.ttf");
}

@font-face {
    font-family: Roboto-Bold;
    src: url("../assets/fonts/Roboto/Roboto-Bold.ttf");
}

@font-face {
    font-family: Campton-Bold;
    src: url("../assets/fonts/Campton/Campton-Bold.otf");
}

body {
    margin: 0;
    background-image: url('../assets/Background_grootV2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Roboto;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: Campton-Bold;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    font-family: Campton-Bold;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    font-family: Campton-Bold;
}

h4 {
    font-size: 16px;
    font-weight: bold;
    font-family: Roboto-Bold;
}

.white {
    color: white;
}

.bold {
    font-family: Roboto-Bold;
}

.small {
    font-size: 10px;
}
/*#endregion*/

/*#region FORM STYLES */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=tel] {
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 14px;
    font-family: Roboto;
    background-color: white;
}

input[type=date].input-validation-error,
input[type=text].input-validation-error,
input[type=password].input-validation-error,
input[type=email].input-validation-error,
input[type=tel].input-validation-error {
    margin-bottom: 10px;
}

input:focus {
    border: none;
    outline: none;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.form-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-group--flex {
    display: flex;
}

.comment {
    color: #757575;
    font-size: 12px;
}

.comment-success {
    font-size: 12px;
    color: #8CC24A;
}

.text-danger {
    color: #B53370;
    font-size: 12px;
    line-height: 1.3;
    padding-left: 20px;
    padding-right: 20px;
}

input.validation-succeeded {    
}

input.validation-failed {
    color: #B53370;
}

.eye-validation-failed {
    filter: invert(25%) sepia(86%) saturate(1608%) hue-rotate(304deg) brightness(87%) contrast(86%);
}

.password-validation-sign {
    right: 48px !important;
}

.has-feedback {
    position: relative;
    margin-bottom: 0;
}

.form-control-feedback {
    position: absolute;    
    right: 30px;
    transform: translateX(50%);
    top: 15px;
}

.form-control-feedback.validation-failed {
    color: #B53370;
    font-style: normal;
}

.validation-errors {    
    display: none;
}

.validation-errors ul,
.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.field-validation-valid {
    display: none;
}

ul.none-list-style {
    list-style: none;
}
/*#endregion*/

/*#region BUTTON STYLES */
.btn {
    height: 48px;
    border-radius: 24px;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    font-family: Roboto-Bold;
}

a.btn {
    text-decoration: none;
    position: relative;
    left: 35%;
}

.btn-primary {
    border: none;
    color: white;
    background-color: #8CC24A;
}

.btn-cancel {
    border: none;
    background: transparent;
    color: #757575;
}

.btn-text {
    border: none;
    color: #0F5247;
    background-color: transparent;
    height: 48px;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    font-family: Roboto-Bold;
}

.btn_container {
    display: flex;
}

button.comment {
    border: none;
    background: transparent;
    cursor:pointer;
}

.card {
    padding: 30px;
    background-color: #F4F5F8;
    border-radius: 10px;
}

.center-block-horizontally {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.center-block-vertically {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.center {
    text-align: center;
}
/*#endregion*/

/*#region Helpers */
.hidden {
    visibility: hidden;    
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.full-size {
    width: 100%;
    height: 100%;
}
/*#endregion*/

/*#region Margin and Padding helpers */
.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-auto {
    margin-left: auto;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-auto {
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.pt-0 {
    padding-top: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pl-0 {
    padding-left: 0px !important;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}
/*#endregion*/

/*#region Sign in styles */
.signin-card,
.error-card,
.forgot-card,
.reset-card,
.register-card,
.logout-card {
    width: 375px;
}

.consent-card {
    width: 800px;
}

.welcome-card {
    width: 70%;
    max-width: 800px;
}

.app-footer {
    position: absolute;
    height: 32px;
    width: 219px;
    bottom: 50px;
    background: transparent url('../assets/appstores.svg') 0% 0% no-repeat padding-box;

    margin-left: calc(50% - 108px);
}
/*#endregion*/

/*#region FONT */
.title {
    color: black;
}

.title--green {
    color: #0F5247;
}

.title--default {
    display: block;
}

.title--mobile {
    display: none;
}

.text {
    line-height: 1.4;
    color: #757575;
    font-family: 'Roboto';
}

.text-consent > a:link {
    line-height: 1.4;
    color: #000000;
    font-family: 'Roboto';
}

.text--center {
    text-align: center;
}

.text--white {
    color: white;
}

.pointer {
    cursor: pointer;
}
/*#endregion*/

/*#region MOBILE */
body > .container--mobile {
    margin: 0;
    background-image: url('../assets/Background_groot.png');
    background-size: cover;
    font-family: Roboto;
}

body > .container-image--mobile {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(15, 82, 71, 0.80)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

.container--mobile {
    height: 100%;
    display: flex;
    flex-flow: column;
}

.container--mobile > .card-transparant--mobile {
    position: relative;
}

.container--mobile
.card-transparant--mobile {
    height: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}


.container--mobile
.card-transparant--mobile
> p {
    font-size: 13px;
}

.container--mobile
.card-default--mobile {
    flex: 1 1 auto;
    height: auto;
    width: 100%;
    background-color: #F4F5F8;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.container--mobile
.card-default--mobile > form {
    padding: 30px;
}

.container--mobile
.logo--mobile {
    position: fixed;
    content: url("../assets/yourresearchapp.svg");
    width: 200px;
    height: 20px;
    bottom: 5%;
    z-index: 1;
}

@media (max-height: 700px) {
    .logo--mobile {
        display: none;
    }
}

.container--mobile
.form-control--mobile {
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
}

.form-group--mobile .form-control-feedback {
    right: 50px;
}

.container--mobile
.header-default--mobile {
    top: 0%;
    height: auto;
    width: 100%;
    flex: 0 1 auto;
}

.container--mobile
.header-default--mobile
.step--mobile {
    color: #8CC24A;
    font-family: Roboto-Bold;
    font-size: 15px;
}

.container--mobile
.header-default--mobile
> p {
    font-size: 13px;
}

.container--mobile
.card-transparant--mobile
.text-danger {
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 0px;
    padding-right: 0px;
    color: white;
}

.container--mobile
.card-default--mobile
.text-danger {
    padding-left: 0px;
    padding-right: 0px;
}

/*.container--mobile
.validation-errors {
    display: block;
    margin-top: 15px;
}

.container--mobile
.validation-errors ul,
.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}*/

.form-control-feedback--mobile {
    position: absolute;
    right: 45px;
    transform: translateX(50%);
    top: 15px;
}

.form-control-feedback--mobile.validation-failed {
    color: #B53370;
    font-style: normal;
}

.container--mobile
input[type=date] {
    -webkit-appearance: none;
}

.container--mobile
input[type=date]:after {
    content: attr(placeholder);
}

.container--mobile
.color-placeholder {
    color: #999
}
/*#endregion*/

/*#region WHITE LABEL - VASCO */
body > .container--mobile__vasco {
    margin: 0;
    background-image: url('../assets/customer-specific/vasco/background-vasco.png');
    background-size: cover;
    font-family: Roboto;
}

body > .container-image--mobile__vasco {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(39, 89, 55, 0.80)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

.container--mobile
.logo--mobile__vasco {
    position: fixed;
    content: url("../assets/customer-specific/vasco/logo-vasco.png");
    width: 135px;
    height: 25px;
    bottom: 5%;
    z-index: 1;
}

@media (max-height: 700px) {
    .logo--mobile__vasco {
        display: none;
    }
}

@media screen and (max-width: 414px) {
    .consent-card.consent-card__vasco {
        width: auto;
        height: auto;
    }
}

/*#endregion*/

/*#region WHITE LABEL - eQompas */

body > .container-image--mobile__eqompas {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(15, 82, 71, 0.80)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

.container--mobile
.logo--mobile__eqompas {
    position: fixed;
    content: url("../assets/customer-specific/eqompas/logo-eqompas.png");
    width: 135px;
    height: 25px;
    bottom: 5%;
    z-index: 1;
}

@media (max-height: 700px) {
    .logo--mobile__eqompas {
        display: none;
    }
}

@media screen and (max-width: 414px) {
    .consent-card.consent-card__eqompas {
        width: auto;
        height: auto;
    }
}
/*#endregion*/

/*#region WHITE LABEL - MUMC */
:root {
    --color-mumc-gradient: #00458A;
    --color-mumc-dark-text: #00458A;
    --color-mumc-dark-button: #00458A;
}

body > .container--mobile__mumc {
    margin: 0;
    background-image: url('../assets/customer-specific/mumc/background-mumc.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container--mobile__mumc .btn.btn-primary {
        color: white;
        background-color: var(--color-mumc-dark-button);
    }

    body > .container--mobile__mumc img {
        filter: invert(15%) sepia(96%) saturate(2386%) hue-rotate(198deg) brightness(89%) contrast(101%);
    }

body > .container-image--mobile__mumc {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), var(--color-mumc-gradient)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container-image--mobile__mumc .btn.btn-primary {
        color: var(--color-mumc-dark-text);
        background-color: white;
    }

        body > .container-image--mobile__mumc .btn.btn-primary img {
            filter: invert(47%) sepia(30%) saturate(6099%) hue-rotate(187deg) brightness(99%) contrast(98%);
        }

.consent-card__mumc .btn.btn-primary {
    color: white;
    background-color: var(--color-mumc-dark-button);
}

.consent-card__mumc .title--mobile {
    color: var(--color-mumc-dark-text);
}

.container--mobile
.logo--mobile__mumc {
    position: fixed;
    content: url("../assets/customer-specific/mumc/logo-mumc.png");
    width: 100px;
    height: 100px;
    bottom: 2%;
    z-index: 1;
}

/*#endregion*/

/*#region WHITE LABEL - PLCRC*/
:root {
    --color-plcrc-gradient: #03A9C5F1;
    --color-dark-text: #03A9C5;
    --color-dark-button: #634E42;
}

body > .container--mobile__plcrc {
    margin: 0;
    background-image: url('../assets/customer-specific/plcrc/background-plcrc.png');
    background-size: cover;
    font-family: Roboto;
}

body > .container--mobile__plcrc .btn.btn-primary {
    color: white;
    background-color: var(--color-dark-button);
}

/** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
body > .container--mobile__plcrc img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7476%) hue-rotate(344deg) brightness(112%) contrast(115%);
}

body > .container-image--mobile__plcrc {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), var(--color-plcrc-gradient)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

body > .container-image--mobile__plcrc .btn.btn-primary {
    color: var(--color-dark-text);
    background-color: white;
}

/** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
body > .container-image--mobile__plcrc .btn.btn-primary img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(70%) saturate(5306%) hue-rotate(158deg) brightness(100%) contrast(98%);
}

.consent-card__plcrc .btn.btn-primary{
    color: white;
    background-color: var(--color-dark-button);
}

.consent-card__plcrc .title--mobile{
    color: var(--color-dark-text);
}

@media (max-height: 700px) {
    .logo--mobile__plcrc {
        display: none;
    }
}
/*#endregion*/

/*#region WHITE LABEL - RespiRecord*/
:root {
    --color-respirecord-gradient: #8BA5D6;
    --color-dark-text: #8BA5D6;
    --color-dark-button: #8BA5D6;
}

body > .container--mobile__respirecord {
    margin: 0;
    background-image: url('../assets/customer-specific/respirecord/background-respirecord.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container--mobile__respirecord .btn.btn-primary {
        color: white;
        background-color: var(--color-dark-button);
    }

    /** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
    body > .container--mobile__respirecord img {
        filter: invert(87%) sepia(20%) saturate(6225%) hue-rotate(185deg) brightness(91%) contrast(84%);
    }

body > .container-image--mobile__respirecord {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), var(--color-respirecord-gradient)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container-image--mobile__respirecord .btn.btn-primary {
        color: var(--color-dark-text);
        background-color: white;
    }

        /** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
        body > .container-image--mobile__respirecord .btn.btn-primary img {
            filter: invert(87%) sepia(20%) saturate(6225%) hue-rotate(185deg) brightness(91%) contrast(84%);
        }

.consent-card__respirecord .btn.btn-primary {
    color: white;
    background-color: var(--color-dark-button);
}

.consent-card__respirecord .title--mobile {
    color: var(--color-dark-text);
}

.container--mobile
.logo--mobile__respirecord {
    position: fixed;
    content: url("../assets/customer-specific/respirecord/logo-respirecord.png");
    width: 100px;
    height: 100px;
    bottom: 2%;
    z-index: 1;
}

@media (max-height: 700px) {
    .logo--mobile__plcrc {
        display: none;
    }
}
/*#endregion*/

/*#region WHITE LABEL - UMC*/
:root {
    --color-umc-gradient: #1191FA;
    --color-umc-dark-text: #1191FA;
    --color-umc-dark-button: #1191FA;
}

body > .container--mobile__umc {
    margin: 0;
    background-image: url('../assets/customer-specific/umc/background-umc.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container--mobile__umc .btn.btn-primary {
        color: white;
        background-color: var(--color-umc-dark-button);
    }

    /** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
    body > .container--mobile__umc img {
        filter: invert(47%) sepia(30%) saturate(6099%) hue-rotate(187deg) brightness(99%) contrast(98%);
    }

body > .container-image--mobile__umc {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), var(--color-umc-gradient)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container-image--mobile__umc .btn.btn-primary {
        color: var(--color-umc-dark-text);
        background-color: white;
    }

        /** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
        body > .container-image--mobile__umc .btn.btn-primary img {
            filter: invert(47%) sepia(30%) saturate(6099%) hue-rotate(187deg) brightness(99%) contrast(98%);
        }

.consent-card__umc .btn.btn-primary {
    color: white;
    background-color: var(--color-umc-dark-button);
}

.consent-card__umc .title--mobile {
    color: var(--color-umc-dark-text);
}

.container--mobile
.logo--mobile__umc {
    position: fixed;
    content: url("../assets/customer-specific/umc/logo-umc.png");
    width: 250px;
    height: 100px;
    bottom: 2%;
    z-index: 1;
}

@media (max-height: 700px) {
    .logo--mobile__plcrc {
        display: none;
    }
}
/*#endregion*/

/*#region WHITE LABEL - ALS*/
:root {
    --color-alshome-gradient: #1191FA;
    --color-alshome-dark-text: #1191FA;
    --color-alshome-dark-button: #1191FA;
}

body > .container--mobile__alshome {
    margin: 0;
    background-image: url('../assets/customer-specific/alshome/background-alshome.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container--mobile__alshome .btn.btn-primary {
        color: white;
        background-color: var(--color-alshome-dark-button);
    }

    /** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
    body > .container--mobile__alshome img {
        filter: invert(47%) sepia(30%) saturate(6099%) hue-rotate(187deg) brightness(99%) contrast(98%);
    }

body > .container-image--mobile__alshome {
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), var(--color-alshome-gradient)), url('../assets/mobile-background.png');
    background-size: cover;
    font-family: Roboto;
}

    body > .container-image--mobile__alshome .btn.btn-primary {
        color: var(--color-alshome-dark-text);
        background-color: white;
    }

        /** recolor svg (see: https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element) */
        body > .container-image--mobile__alshome .btn.btn-primary img {
            filter: invert(47%) sepia(30%) saturate(6099%) hue-rotate(187deg) brightness(99%) contrast(98%);
        }

.consent-card__alshome .btn.btn-primary {
    color: white;
    background-color: var(--color-alshome-dark-button);
}

.consent-card__alshome .title--mobile {
    color: var(--color-alshome-dark-text);
}

.container--mobile
.logo--mobile__alshome {
    position: fixed;
    content: url("../assets/customer-specific/alshome/logo-alshome.png");
    width: 200px;
    height: 40px;
    bottom: 2%;
    z-index: 1;
}

@media (max-height: 700px) {
    .logo--mobile__alshome {
        display: none;
    }
}
/*#endregion*/

/*#region MEDIA QUERIES */
@media screen and (max-width: 414px) {
    body {
        margin: 0;
        background-size: cover;
        font-family: Roboto;
    }

    .title--default {
        display: none;
    }

    .title--mobile {
        display: block;
    }

    .app-footer {
        display: none;
    }

    .center-block-vertically {
        position: unset;
        top: unset;
        transform: unset;
    }

    .signin-card,
    .error-card,
    .welcome-card,
    .forgot-card,
    .reset-card,
    .logout-card {
        width: 100%;
        height: 100%;
    }

    .consent-card,
    .register-card {
        width: 100%;
        height: 100%;
    }

    .consent-card
    .card {
        padding-left: unset;
        padding-right: unset;
    }

    .consent-card
    .card
    .title--green,
    .consent-card
    .card
    .text {
        padding-left: 30px;
        padding-right: 30px;
    }

    .card {
        height: 100%;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;

        display: flex;
        flex-direction: column;
    }

    .welcome-card
    .card {
        border-top-left-radius: unset;
        border-top-right-radius: unset;
    }

    .consent-card
    .card {
        border-top-left-radius: unset;
        border-top-right-radius: unset;
        border-bottom-left-radius: unset;
        border-bottom-right-radius: unset;

        height: 100%;
        width: 100%;
    }

    .logo {
        content: url("../assets/yourresearchapp.svg");
        width: 200px;
        height: 20px;

        margin-top: 30px;
    }

    .consent-card
    .logo {
        display: none;
    }

    .text-consent {
        padding-left: 30px;
        padding-right: 30px;

        flex-grow: 1;

        display: flex;
        flex-direction: column;
    }

    .consent-description {
        flex-grow: 1;
    }
    
}
/*#endregion*/

/*#region WELCOME PAGE*/
.welcome-page
.page-header {
    color: #757575;
    padding-left: 0.67rem;
    padding-right: 0.67rem;
    padding-bottom: 0.67rem;
}

.welcome-page
.redirect_container {
    display: flex;
    flex-direction: row;
}

.welcome-page
.column {
    position: relative;
}

.welcome-page
.column
.redirect {
    width: 100%;
}

.welcome-page
.column
.btn {
    position: absolute;
    height: unset;
    padding: 1em 1.5em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}


@media screen and (max-width: 768px) {

    .welcome-page .redirect_container {
        display: block;
    }

    .welcome-page
    .column
    .redirect {
        width: 100%;
        border-radius: 10px;
    }
}

@media screen and (max-width: 375px) {
    a.btn {
        left: 34%;
    }
}

@media screen and (max-width: 320px) {
    a.btn {
        left: 31%;
    }
}

@media (min-width: 768px) {
    .container-mobile-width {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container-mobile-width {
        width: 970px;
    }
}
/*#endregion*/