/*Menu links*/

.dd-button {
    display: inline-block;
    vertical-align: middle;
}

/* .user_profile {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.btn-3 {
    margin-bottom: 8px;
}

#notification__btn {
    display: none;
}

.profile-image-container {
    position: relative;
    width: 25px;
    height: 25px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

.user__container--image {
    display: inline-block;
    margin-right: 5px;
    /*background-color: #fff;*/
}

.user__container--image img {
    width: 100%;
    height: auto;
}

.navigation {
    padding: 0;
    background-color: #e2e2e2;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    box-shadow: 0 0 3px #9a9696;
}

.navbar-brand {
    display: inline-block;
}

.navbar-brand img {
    vertical-align: middle;
}

.navbar-list--container {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex-grow: 1;
    position: relative;
    justify-content: space-between;
}

.navigation__links {
    display: -webkit-box;
    display: flex;
    width: 100%;
    position: relative;
}

.navbar-list {
    display: flex;
    align-items: center;
    width: initial;
    justify-content: space-between;
    width: 22%;
}

.find-property-nav {
    /* display: flex;
    align-items: center; */
    font-size: 16px;
    font-weight: 500;
    width: 68%;
    display: inline-block;
}

.key__icon {
    margin-right: 5px;
    width: 10px;
}

/* .navbar-list>li:last-child {
    float: right;
} */

.option_link {
    display: block;
}

.nav-item {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.website__link {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    margin-left: 0;
}

.navbar-list .nav-item .nav-link {
    text-decoration: none;
    /* color: #616161; */
    display: block;
    font-weight: 500;
    text-transform: capitalize;
}

.nav-item.active {
    border-bottom: 3px solid #383838;
}

/*User dropdown*/

.dropdown {
    text-align: right;
}

.user_profile {
    cursor: pointer;
}

.dd-button {
    display: inline-block;
    cursor: pointer;
}

.dd-input {
    display: none;
}

.dd-menu {
    z-index: 999;
    position: absolute;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    list-style-type: none;
}

.dd-input+.dd-menu {
    display: none;
}

.dd-input:checked+.dd-menu {
    display: block;
    right: 0;
}

.dropdown-label {
    position: relative;
}

.dd-menu li {
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 0;
}

.dd-menu li:last-child {}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
}

.dd-menu li.divider {
    padding: 0;
    border-bottom: 1px solid #cccccc;
}

#login__btn,
#signup__btn {
    text-decoration: none;
    display: inline-block;
    color: #383838;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* background-color: #383838; */
    text-transform: capitalize;
    /* padding: 8px 32px; */
    border-radius: 3px;
    /* border: 1px solid #383838; */
}

#list_property {
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    background-color: #2c7eef;
    color: #fff;
    padding: 11px 24px;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
}

.navbar-brand {
    /* width: 130px; */
    height: auto;
}

.navbar-brand img {
    width: 100%;
}

#websites {
    display: none;
}

.current {
    font-weight: 500;
}

.dropdown {
    color: #383838;
    /*border: 1px solid #383838;*/
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
    cursor: pointer;
    font-size: 14px;
    vertical-align: middle;
    /* padding: 0px 16px; */
    padding-right: 16px;
    position: relative;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    display: inline-block;
}

.dropdown:active,
.dropdown.open {
    background-color: #f0f0f0 !important;
    border-color: #e4e4e4;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}

.dropdown:after {
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #383838;
    transform: origin(50% 20%);
    transition: all 0.125s ease-in-out;
    content: "";
    display: block;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
}

.dropdown.open:after {
    transform: rotate(-180deg);
}

.dropdown.open .list {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown.open .option {
    cursor: pointer;
}

.dropdown.wide {
    width: 100%;
}

.dropdown.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.dropdown .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transform-origin: 50% 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 3px;
    margin-top: 4px;
    padding: 3px 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 999;
}

.dropdown .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.dropdown .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 20px;
    text-align: left;
    transition: all 0.2s;
}

.dropdown .option:hover,
.dropdown .option:focus {
    background-color: #f6f6f6 !important;
}

.dropdown .option.selected {
    font-weight: 600;
}

.dropdown .option.selected:focus {
    background: #f6f6f6;
}

.by {
    bottom: 12px;
    color: #aaa;
    font-size: 12px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}

.list ul {
    margin: 0;
}

.list ul li {
    margin: 0;
}

/*Modal signup*/

.modale-signup:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
}

.modale-create-signup:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
}

.btn-close-signup {
    color: #383838;
    font-size: 30px;
    text-decoration: none;
    position: absolute;
    right: 17px;
    top: 6px;
}

.btn-close-signup:hover {
    color: #919191;
}

.opened-signup:before {
    display: block;
}

.opened-signup .modal-dialog-signup {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    top: 14%;
    position: fixed;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.modal-dialog-signup {
    width: 435px;
    background: #fefefe;
    border: #333333 solid 0;
    border-radius: 5px;
    position: fixed;
    left: 50%;
    z-index: 9;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(0, -500%);
    transform: translate(0, -500%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal-dialog-signup .header__signup--title {
    color: #383838;
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}

.modal-body-signup {
    padding: 30px 20px;
}

.modal-header-signup {
    padding: 10px 20px;
    text-align: center;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.modal-header-signup {
    background-color: #e2e2e2;
    border-bottom: #bdbdbd solid 1px;
}

.g-recaptcha {
    display: inline-block;
    vertical-align: middle;
}

.btn-primary-register {
    /*padding: 25px 22px;*/
    width: 100%;
    padding: 12px 0;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    background: #2c7eef;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.g__recaptcha__container {
    align-items: center;
    display: grid;
    grid-template-columns: 80% 20%;
    text-align: center;
}

.btn-primary-next {
    background-color: #d8000c;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 97%;
    border-radius: 3px;
    justify-content: center;
}

.next__primary__container {
    height: 100%;
}

.modal-footer-signup {
    text-align: center;
}

/*Signup css*/

h4 {
    color: #383838;
}

.input--credentials {
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #383838;
    border-radius: 3px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    font-size: 16px;
}

.input--credentials:focus {
    outline: 0;
    border-color: #2c7eef;
}

.input--credentials:focus+.input-icon i {
    color: #2c7eef;
}

.input--credentials:focus+.input-icon {
    border-right: 1px solid #2c7eef;
}

.input-group {
    margin-bottom: 1em;
    zoom: 1;
}

.input-group:before,
.input-group:after {
    content: "";
    display: table;
}

.input-group:after {
    clear: both;
}

.input-group-icon {
    position: relative;
}

.input-group-icon .input--credentials {
    padding-left: 55px;
}

.input-group-icon .input-icon {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 2.6em;
    text-align: center;
    pointer-events: none;
    border-right: 1px solid #383838;
    width: 45px;
}

.input-group-icon .input-icon-eye {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 48px;
    text-align: center;
    width: 45px;
    cursor: pointer;
}

#password-signup-via-code {
    padding-right: 3em;
}

/* .input-group-icon .input-icon:after {
        position: absolute;
        top: 0.6em;
        bottom: 0.6em;
        left: 2.8em;
        display: block;
        border-right: 1px solid #e5e5e5;
        content: "";
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    } */

.input-group-icon .input-icon i {
    vertical-align: middle;
}

.container-register,
.container-register-social {
    margin: 0em auto;
    background-color: #fff;
    border-radius: 3px;
    /* box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2); */
}

.container-register h4 {
    font-size: 36px;
}

.row {
    zoom: 1;
}

.row:before,
.row:after {
    content: "";
    display: table;
}

.row:after {
    clear: both;
}

.col-half {
    padding-right: 10px;
    float: left;
    width: 50%;
}

.col-half:last-of-type {
    padding-right: 0;
}

.col-third {
    padding-right: 10px;
    float: left;
    width: 33.333333333333%;
}

.col-third:last-of-type {
    padding-right: 0;
}

@media only screen and (max-width: 540px) {
    .col-half {
        width: 100%;
        padding-right: 0;
    }
}

/* .btn-primary {
        padding: 25px 22px;
        cursor: pointer;
        border-radius: 3px;
        border: none;
        background: #383838;
        color: #fff;
        font-size: 17px;
        display: inline-block;
    } */

.sign-in-text {
    color: #978897;
    font-size: 14px;
}

.sign-in-btn {
    color: #2c7eef;
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
}

.signin__container {
    display: inline-block;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .signin__container {
        font-size: 14px;
    }
}

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

/*recaptcha style*/

/* .g-recaptcha div {
        margin: 0 auto;
    } */

/* .g-recaptcha+span {
        display: block;
        text-align: center;
    } */

.g-recaptcha {
    display: -webkit-inline-box;
    display: inline-flex;
    vertical-align: middle;
}

/*Separator*/

.separator {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #978897;
}

.separator::before,
.separator::after {
    content: "";
    -webkit-box-flex: 1;
    flex: 1;
    border-bottom: 1px solid #d4d4d4;
}

.separator::before {
    margin-right: 0.25em;
}

.separator::after {
    margin-left: 0.25em;
}

/*Social Media*/
.social--btn {
    width: 100%;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 12px 0;
    display: inline-block;
    letter-spacing: 1px;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
}

@media only screen and (max-width: 320px) {
    .social--btn {
        font-size: 13px;
    }
}

.social--btn a {
    text-decoration: none;
    color: inherit;
}

.social--btn:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* Pseudo elements for icons */

.social--btn:before {
    font-family: "Font Awesome\ 5 Free";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 2;
    position: relative;
}

/* Icon separator */

.btn-sep:before {
    background: rgba(0, 0, 0, 0.15);
}

/* Button 1 */

.btn-1 {
    background: #fff;
    color: #383838;
    border: 2px solid #383838;
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-1:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 2;
    font-size: 22px;
    width: 60px;
}

/* Button 2 */

.btn-2 {
    background: #fff;
    color: #383838;
    border: 2px solid #383838;
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-2:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 2;
    font-size: 140%;
    width: 60px;
}

/* Button 3 */

.btn-3 {
    background: #fff;
    color: #383838;
    border: 2px solid #383838;
    font-weight: 600;
}

.btn-3:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 2;
    font-size: 140%;
    width: 60px;
}

.sign-up-text a {
    text-decoration: none;
}

/* Icons */

.icon-facebook:before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f39e";
    border-radius: 3px;
    color: #3b5998;
}

.icon-gmail:before {
    width: 25px;
    background-repeat: no-repeat;
    background-image: url("/assets/image/icon/google_logo.svg");
    content: "";
    border-radius: 3px;
    left: 18px;
    top: 8px;
}

.icon-phone:before {
    width: 25px;
    height: 25px;
    content: '';
    background: url("/assets/image/icon/continue_mobi.svg") no-repeat center center/cover;
    position: absolute;
    top: 10px;
    left: 17px;
}

@media (max-width: 320px) {
    .social--btn {
        font-size: 13px;
    }

    .icon-gmail:before {
        width: 19px;
        background-repeat: no-repeat;
        background-image: url("/assets/image/icon/google_logo.svg");
        content: "";
        border-radius: 3px;
        left: 11px;
        top: 8px;
    }
}

.invalid-feedback-signup {
    display: block;
    color: red;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

.invalid-feedback-signin {
    display: block;
    color: red;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

/* Notification modal css */

.notification-counter {
    background: #ff2200;
    height: 20px;
    padding: 0 5px;
    min-width: 11px;
    color: #ffff;
    top: -12px;
    left: 5px;
    position: absolute;
    border-radius: 100px;
    text-align: center;
    z-index: 2;
    display: none;
}

.notification-counter span {
    font-size: 10px;
    vertical-align: text-top;
}

.modal-notification {
    position: absolute;
    z-index: 10000;
    /* 1 */
    visibility: hidden;
    /* width: 100%;
    height: 100%; */
    right: 309px;
    top: -39px;
    text-align: left;
}

.modal-notification.is-visible {
    visibility: visible;
}

/* .modal-overlay-notification {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
} */

/* .modal-notification.is-visible .modal-overlay-notification {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
} */

.modal-wrapper-notification {
    position: absolute;
    z-index: 9999;
    top: 80px;
    /* left: 50%; */
    width: 316px;
    height: 300px;
    overflow: hidden;
    /* margin-left: -16em; */
    background-color: #fff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    border-radius: 5px;
    transition: ease-in;
}

.modal-wrapper-notification:hover:not(.no-notifications) {
    overflow-y: scroll;
    transition: ease-out;
}

.modal-wrapper-notification::-webkit-scrollbar {
    width: 8px;
    background-color: #fff;
}

.modal-wrapper-notification::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(85, 85, 85, 0.034);
    background-color: rgba(61, 61, 61, 0.37);
}

.modal-transition-notification {
    transition: all 0.3s 0.12s;
    transform: translateY(-10%);
    opacity: 0;
}

.modal-notification.is-visible .modal-transition-notification {
    transform: translateY(0);
    opacity: 1;
}

.modal-header-notification,
.modal-content-notification {
    /* padding: 1em; */
    word-break: break-word;
}

.modal-header-notification {
    position: relative;
    background-color: #fff;
    box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
    border-bottom: 1px solid #e8e8e8;
}

.modal-close-notification {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
}

.modal-close-notification:hover {
    color: #777;
}

.modal-heading-notification {
    font-size: 1.125em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal-content-notification>*:first-child {
    margin-top: 0;
}

.modal-content-notification>*:last-child {
    margin-bottom: 0;
}

.modal-content-status {
    text-align: center;
}

.modal-content-details span {
    display: block;
    word-break: break-word;
}

.modal-content {
    display: grid;
    grid-template-columns: 198px 92px;
    padding: 13px;
    border-bottom: 1px solid #e7e7e7;
    cursor: pointer;
}

.is-approved {
    padding: 2px 8px;
    color: #383838;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #383838;
    border-radius: 3px;
    font-size: 12px;
}

.is-cancelled {
    padding: 2px 8px;
    color: #ef2144;
    border: solid 1px #ef2144;
    font-weight: 500;
    background-color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.is-pending {
    padding: 2px 8px;
    color: #383838;
    border: solid 1px #383838;
    font-weight: 500;
    background-color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.is-verification {
    padding: 2px 8px;
    color: #fff;
    font-weight: 500;
    background-color: #afafaf;
    border-radius: 3px;
    font-size: 12px;
}

.span-title {
    font-weight: 700;
    color: #5a5a5a;
}

.span-date {
    color: #8c8c8c;
    font-size: 12px;
}

.span-time {
    color: #8c8c8c;
    font-size: 12px;
}

.modal-content-details {
    line-height: 2;
}

.activeButton {
    background-color: #dae5f7;
    /* padding: 8px; */
    border-radius: 5px;
}

.vl {
    height: 50px;
    margin: 0px 12px;
    display: inline-block;
    width: 1px;
    background-color: #383838;
    vertical-align: middle;
}


.no-new-notification {
    padding-top: 60px;
    text-align: center;
}

.no-new-notification--details {
    display: block;
}

.no-new-notification--details i {
    color: #5a5a5a;
    font-size: 36px;
    display: block;
}

.no-new-notification--details span:first-of-type {
    display: block;
    margin-top: 16px;
    color: #5a5a5a;
}

.no-new-notification--details span h1 {
    margin: 0;
}

.dot {
    height: 5px;
    width: 5px;
    background-color: #383838;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

#search-icon {
    margin-right: 3px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

/*
#toggleNotificationIcon{
    color: #383838;
} */
.navbar__divider {
    height: 17px;
    margin: 0px 12px;
    display: inline-block;
    width: 1px;
    background-color: #383838;
    vertical-align: middle;
}

#property__manager__btn {
    font-weight: 500;
    font-size: 14px;
}

.auth__link__container {
    display: grid;
    grid-template-columns: auto auto;
    padding: 4px 0;
}

.signup__link {
    text-align: right;
    margin-bottom: 0;
}

.divider__brand {
    height: 42px;
    margin: 0px 16px;
    display: inline-block;
    width: 1px;
    background-color: #383838;
    vertical-align: middle;
}

.nav_icon {
    font-size: 22px;
    color: #2c7eef;
}

.width_60 {
    width: 60%;
}

.width_40 {
    width: 40%;
}

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

.font-16 {
    font-size: 16px !important;
}

.search-icon {
    background-color: #2c7eef;
    color: #fff;
    padding: 12px;
    vertical-align: middle;
    font-size: 18px;
    cursor: pointer;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.custom-control-search {
    /* padding-right: 30px; */
    vertical-align: middle;
    width: 442px;
    outline: none;
    border: none;
    display: inline-block;
    height: 40px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-txt-color);
    font-size: 16px;
}

.search__input {
    border-radius: 3px;
    display: inline-block;
    padding-left: 10px;
    background-color: #fff;
    position: relative;
}

#remove_all {
    top: 10px;
    padding: 4px;
    position: absolute;
    right: 50px;
    cursor: pointer;
    display: none;
}

.container-login-navigation {
    display: none;
    margin: 0 auto;
}

#btn-login-navigation {
    width: 100%;
    padding: 12px 0;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    background: #2c7eef;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.sign-up-text,
.reset_password__container {
    font-size: 16px;
}

.sign-up-text a {
    font-size: 16px;
}

.verification__guide {
    position: relative;
    text-align: center;
    margin-bottom: 12px;
}

#verification__error {
    font-weight: 500;
    font-size: 12px;
    color: #2c7eef;
}

.verification__send__container {
    display: grid;
    margin-top: 16px;
    grid-template-columns: 50% 50%;
}

#verification__resend__navigation {
    padding: 4px 16px;
    color: #2c7eef;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #2c7eef;
    background-color: #fff;
    cursor: pointer;
}

#verification__send__navigation {
    padding: 4px 16px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #2c7eef;
    background-color: #2c7eef;
    cursor: pointer;
}

.verification__container {
    display: none;
}

#verification__code_navigation {
    border: 1px solid #383838;
    padding: 10px;
    border-radius: 3px;
    width: -webkit-fill-available;
    text-transform: uppercase;
}

.back__button__signup {
    color: #383838;
    font-size: 18px;
    text-decoration: none;
    position: absolute;
    left: 24px;
    top: 20px;
    display: none;
    cursor: pointer;
}

.iti__flag-container input {
    padding-left: 85px !important;
}

#roaming__guide {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #2c7eef;
}

#register__signin__label {
    text-align: center;
    display: block;
    margin-top: 15px;
}

#login__redirect {
    text-decoration: none;
}

#register__signin__button {
    color: #2c7eef;
    text-decoration: none;
}

.strength {
    height: 7px;
    width: 100%;
    background: #ccc;
    margin-top: 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    position: relative;
    z-index: 2;
}

.strength span {
    width: 0px;
    height: 7px;
    display: block;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.verified__guide {
    font-weight: 500;
}

/* .navigation_fixed {
    position: fixed;
    width: 100%;
    z-index: 222;
    top: 0;
} */
.navigation__small {
    background-color: #fff;
}

.circle_dot {
    width: 3px;
    height: 3px;
    background-color: #383838;
    border-radius: 250px;
    display: inline-block;
    margin: 0 8px;
    align-items: center;
    vertical-align: middle;
}

.nav-item {
    margin-left: 14px;
}

.fa-shopping-cart {
    font-size: 28px;
    color: #383838;
}

.cart__counter {
    background-color: #2c7eef;
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    border-radius: 100px;
    font-size: 10px;
    position: absolute;
    text-align: center;
    top: -11px;
    right: -16px;
    color: #fff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 6px;
    border: 1px solid #f4f4f4;
    justify-content: center;
}

.cart__counter.hidden {
    display: none;
}

#language {
    display: none;
}
.navigation_fixed{
    position: fixed;
    top: 0;
    width: -webkit-fill-available;
    z-index: 9999;
}