body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100vh;
    width: 100vw;
    margin: 0px;
    justify-content: center;
    align-items: center;
    background-image: url(background-new.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    overflow-y: hidden;
}

@media only screen and (min-width: 1000px) {

    /* For large screens: */
    body {
        background-image: url(background-new.jpg);
        background-size: cover;
        background-position: center;
    }
}


.header-image {
    display: none;
    justify-content: start;
    margin: 10px 0;
}

#main-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 30px;
    gap: 40px;
    flex-grow: 1;
    flex-basis: 0;
    max-height: 800px;
}

#logo:hover {
    cursor: pointer;
}

#form-container {
    flex-grow: 1;
    flex-basis: 0;
    height: 100vh;
}

#lag_select_container {
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#language_selector {
    width: 60px;
    height: 52px;
    float: right;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.0);
    transition: 0.1s;
    font-weight: 500;
    text-align: center;
}

#language_selector>option {
    color: #002E4D;
}

#language_selector:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 992px) {
    body {
        background: #002E4D;
    }

    #lag_select_container {
        justify-content: Space-between;
        padding-right: 20px;
    }

    .header-image {
        display: inline-block;
    }

    #contact_form {
        margin: 0 auto;
        float: none;
    }

    #image-container {
        display: none;
    }

    #main-container {
        padding: 0;
    }
}

h2 {
    font-size: 3em;
    color: white;
    margin: 0;
}

.sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-area {
    position: relative;
    width: 100%;
    height: 56px;
    font-size: 16px;
}

.input-label {
    position: absolute;
    font-size: inherit;
    margin: 19px;
    transition: 0.1s ease;
    color: #557F9B;
    cursor: text;
}

input {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 19px 19px 0px 19px;
    width: 100%;
    height: 100%;
    font-size: inherit;
    border: 1px solid #ABC8DA;
    background: transparent;
    border-radius: 12px;
    box-sizing: border-box;
    transition: 0.1s ease;
}

.invalid {
    border-color: transparent;
    box-shadow: 0 0 0 2px #E13526;
    -webkit-box-shadow: 0 0 0 2px #E13526;
    -moz-box-shadow: 0 0 0 2px #E13526;

    LABEL {
        color: #E13526;
    }
}

input:focus {
    outline-width: 0;
    border-color: transparent;
    box-shadow: 0 0 0 2px #0BC8CC;
    -webkit-box-shadow: 0 0 0 2px #0BC8CC;
    -moz-box-shadow: 0 0 0 2px #0BC8CC;
    font-size: inherit;
    outline: #0BC8CC;
}

input:focus~.input-label {
    transform: translate(0, -12px);
    font-size: inherit;
}

input:not(:placeholder-shown)~.input-label {
    transform: translate(0, -12px);
    font-size: inherit;
}

input:valid~.input-label {
    border-color: #ABC8DA;
}

.input-disabled {
    background: #F0F5F8;
    border-color: transparent;
}

.input-disabled~label {
    color: #8faabc;
}

#promo_code {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    border-radius: 12px;
    box-sizing: border-box;
}

#first-last {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.side-by-side {
    flex-grow: 1;
    flex-basis: 0;
}

#form-container {
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#form-container::-webkit-scrollbar {
    display: none;
}

form {
    display: flex;
    flex-direction: column;
    gap: 60px;
    background-color: #ffffff;
    text-align: left;
    padding: 20px;
    margin: 20px 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    float: right;
    border-radius: 20px;
}

#chart-container {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(0, 152, 255, 0.1);
    border-radius: 12px;
    padding: 1em;
    font-size: 14px;
    font-weight: 500;
    gap: 20px;
}

#chartnew {
    flex-grow: 10;
    margin: 0;
    color: #002E4D;
}

a.btn {
    flex-grow: 1;
    color: #0B8BB1;
    font-size: 14px;
}

button.btn {
    color: #002E4D;
    background-color: white;
    font-size: 1em;
    font-weight: 700;
    border-radius: 30px;
    border-color: transparent;
    padding: 16px 20px;
}

h1 {
    text-align: left;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
    color: #002E4D;
}


.promopopup {
    margin-bottom: 30px;
}

#plan-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    height: 220px;
    align-items: stretch;
}

.action_btn_annual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    border: 1px solid #ABC8DA;
    flex-grow: 1;
    flex-basis: 0;
}

.action_btn_monthly {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #ABC8DA;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    flex-grow: 1;
    flex-basis: 0;
}

.button_selected {
    border-color: transparent;
    box-shadow: 0 0 0 2px #0BC8CC;
    background: #0BC8CC10;
}

.plan-top-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.plan-bottom-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.plan-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}


@media (max-width:500px) {
    span1 {
        margin-left: 0px;
        margin-right: 0px;
        font-size: 3px;
    }

    span2 {
        margin-left: 0px;
        margin-right: 0px;
        font-size: 3px;
    }
}

span1 {
    color: #fff;
    border: 2px;
    border-style: solid;
    border-color: #407ca5;
    background-color: #407ca5;
    border-radius: 30px;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: 700;
    font-size: min(max(1px, 3vw), 20px);
}

span1:hover {
    background-color: #1e527b;
}


span2 {
    border: 2px;
    background-color: #fff;
    border-style: solid;
    border-color: #407ca5;
    border-radius: 30px;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: 700;
    font-size: min(max(1px, 3vw), 20px);
    color: #000000;
}

span2:hover {
    border-color: #000000;
}

span3 {
    font-weight: 600;
    color: #0B8BB1;
    font-size: 0.8em;
    float: left;
    text-align: left;
}

span8 {
    color: #557F9B;
    font-size: 0.8em;
    float: left;
}

span4 {
    font-size: 1.5em;
    font-weight: 700;
    float: left;
    color: #002E4D;
}

span5 {
    font-size: 1.5em;
    font-weight: 700;
    float: left;
    color: #002E4D;
}

span6 {
    font-size: min(max(19px, 2vw), 26px);
    font-weight: 700;
    float: left;
    color: #002E4D;
}

span7 {
    font-size: min(max(19px, 2vw), 26px);
    font-weight: 700;
    float: left;
    color: #002E4D;
    text-align: left;
}

span11 {
    font-size: 0.8em;
    font-weight: 100;
    float: left;
    padding-left: 2px;
    padding-top: 5px;
    color: #002E4D;
}

span12 {
    font-size: 0.8em;
    font-weight: 100;
    float: left;
    padding-left: 2px;
    padding-top: 5px;
    color: #002E4D;
}

span9 {
    display: flex;
    align-items: baseline;
    color: #fff;
    font-size: 1em;
    border: 2px;
    background-color: #0B8BB1;
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-weight: 400;
    float: left;
}

#promoform {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.button {
    margin-top: 0px;
    background-color: #002E4D;
    border: none;
    color: white;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 400;
    padding: 20px;
    box-shadow: none;
}

.button:hover:enabled {
    background-color: #005086;
    cursor: pointer;
}

.button_disabled {
    color: #8FAABC;
    background: #F0F5F8;
}

.buttonfacebook {
    float: right;
    justify-content: center;
    margin-bottom: 12px;
    background-color: #ffffff;
    border: 1px solid #ABC8DA;
    ;
    color: #1877F2;
    border-radius: 12px;
    padding: 13px 12px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 400;
    width: 48%;
    box-shadow: none;
}

.buttonfacebook:hover {
    background-color: #002E4D10;
}


.buttonapple {
    float: left;
    margin-bottom: 12px;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #ABC8DA;
    ;
    color: rgb(0, 0, 0);
    border-radius: 12px;
    padding: 13px 20px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 400;
    width: 48%;
    box-shadow: none;
}

.buttonapple:hover {
    background-color: #002E4D10;
}

.btn {
    cursor: pointer;
}

.step1 {
    color: #407ca5;
    text-align: left;
    margin-top: 20px;
    margin-left: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: min(max(20px, 3vw), 20px);
    line-height: 0px;
}

.step2 {
    text-align: left;
    margin-top: 20px;
    margin-left: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: min(max(16px, 3vw), 16px);
    line-height: 0px;
}

.step3 {
    text-align: left;
    margin-top: 16px;
    margin-left: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: min(max(16px, 3vw), 16px);
    line-height: 0px;
}



label {
    padding-right: 4px;
}

p {

    margin-left: 4px;
    padding-top: 0px;
}

.terms {
    font-size: min(max(8px, 2.5vw), 12px);
}

.termslink {
    font-family: 'Roboto', sans-serif;
    font-size: min(max(8px, 2.5vw), 12px);
    padding-left: 4px;
}

.promoprice {
    color: #1B8C34;
    font-size: 20px;
    font-weight: 700;
    padding-left: 8px;
}

.pricelabelparagraph {
    margin-left: 12px;
    margin-bottom: 12px;
}

.promotrial {
    font-size: 16px;
    font-weight: 700;
    line-height: 0px;
    margin-left: 12px;
    margin-top: 18px;
    color: #1B8C34;
}

.Divider {
    width: 100%;
    height: 45px;
    text-align: center;
    display: flex;
}

.Side {
    width: 46.665%;
    padding: 10px 0;
}

.Middle {
    width: 6.67%;
    padding: 10px 0;
    font-size: 14px;
}


.a-account-already-login {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    padding-left: 4px;
}

.p-log-in {
    font-family: 'Roboto', sans-serif;
    color: #557F9B;
    font-size: 1em;
}

.forgotpassword {
    padding-top: 6px;
    padding-left: 4px;
}

#create_account_error_message {
    color: #E13526;
}

.p-create-account {
    font-size: 12px;
}

.a-create-an-account {
    font-size: 12px;
}

a {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    padding-left: 4px;
    color: #0B8BB1;
}

#logo {
    width: 100%;
    height: 5vh;
    background-image: url("Logo-AppIcon-New.png");
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: contain;
}

select {
    margin-top: 10px;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: 0;
    width: 100%;
    background: #ffffff;
    color: #000000;
    padding: 14px 14px 13px 15px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgb(232, 232, 232);
    box-sizing: border-box;
}

select:hover {
    background-color: #e5e5e5;
}

/* remove the original arrow */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select.subplans {
    background-image:
        linear-gradient(45deg, transparent 50%, rgb(0, 46, 77) 50%),
        linear-gradient(135deg, rgb(0, 46, 77) 50%, transparent 50%),
        linear-gradient(to right, #002e4d, #002e4d);
    background-position:
        calc(100% - 20px) calc(1em + 5px),
        calc(100% - 15px) calc(1em + 5px),
        calc(100% - 3em) 0.4em;
    background-size:
        5px 8px,
        5px 8px,
        1px 2em;
    background-repeat: no-repeat;
}

#spinner-div {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.loader {
    position: relative;
    top: 50%;
    transform: translateY(-40%);
    display: inline-block;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #0ba9be;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#map-lightbox-bg {
    position: fixed;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #002E4D90;
    gap: 20px;
    z-index: 1000;
}

#lightbox-container {
    width: 100%;
    height: 80%;
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

#email_success {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1em;
    color: #002E4D;
    gap: 12px;
}

.appsWeLove {
    width: 100%;
    height: 7.5vh;
    background-image: url("AppleAppStore.png");
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: contain;
}

.featureImage {
    width: 100%;
    height: 40vh;
    background-image: url("Phones.png");
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: contain;
}