html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Museo Sans Rounded";
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    /*touch-action: pan-x pan-y;  disable zoom*/
    min-height: 100vh;
    -webkit-font-smoothing: antialiased !important;
}

* {
    box-sizing: border-box;
}

.white-theme {
    --background: #fff;
    --background-light: #eee;
    --color: #000;
    --background-transparent: #ffffffde;
    --gradient_1: #ffffff;
    --gradient_2: #ffffff8b;
    --gradient_3: #ffffff4b;
    --gradient_4: #ffffff00;
    --color-transparent: #000000b3;
    --service-hover-background: #efefef;
    --border-color: #ccc;
    --review-header-background: #f3f3f3;
    --shadow-color: #c8c8c8;
    --color_1:#4968a6;
    background-color: #f5f8fb;
    color: #000;
}

.black-theme {
    --background: #3a3a3a;
    --background-light: #3b3b3b;
    --color: #fff;
    --background-transparent: #303030d9;
    --gradient_1: #353535;
    --gradient_2: #0000008b;
    --gradient_3: #0000004b;
    --gradient_4: #00000000;
    --color-transparent: #ffffffb3;
    --service-hover-background: #070707;
    --border-color: #444444;
    --review-header-background: black;
    --shadow-color: #272727;
    color: white;
}
#ajax_loading_bar {
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
}

#ajax_loading_progress {
    position: relative;
    height: 4px;
    background-color: #21c7fe;
    z-index: 888888;
    transition: width 2s ease-in-out;
}

#header {
    top:0;
    z-index: 2222;
    width: 100%;
    position: sticky;
    background: white;
    box-shadow: rgb(230 230 230) 0 2px 8px 0;
}

#header .steps_skin {
    display:none;
    text-align: center;
}
#header #top_steps{
    display: flex;
    z-index: 1;
    left:0;
    margin-right: auto;
}
#header #top_steps .step_text{
    margin-left:5px;
}
#header #top_steps .step_check_icon{
    display:none;
}
#header #top_steps li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem;
    padding-right: .8rem;
    background-color: #e8e8e8;
    color: black;
    height: 2rem;
    font-weight: bold;
}

#header #top_steps li:before {
    content: "";
    position: absolute;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1rem 0 1rem .7rem;
    border-color: transparent transparent transparent #e8e8e8;
}

#header #top_steps li:after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.5rem 0 1.5rem 1rem;
    border-color: transparent transparent transparent white;
}
#header #top_steps li:nth-child(1) {
    z-index: 99;
}
#header #top_steps li:nth-child(2) {
    z-index: 98;
}
#header #top_steps li:nth-child(3) {
    z-index: 97;
}
#header #top_steps li:nth-child(3):before {}

#header #top_steps li:nth-child(4) {
    z-index: 96;
}
#header #top_steps .step_done ,#header #top_steps .step_progress{
    background-color: var(--color_1);
    color:white;
}
#header #top_steps .step_done:before,#header #top_steps .step_progress:before{
    border-color: transparent transparent transparent var(--color_1);
}
#header #top_steps .step_done .step_nr_text{
    display:none;
}
#header #top_steps .step_done .step_check_icon{
    display: flex;
}
h1 {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 2.4rem;

}

h2 {
    margin: 0;
    margin-top: 20px;
    font-size: 1.6em;

}

h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

p {
    margin: 6px 0;
}

hr {
    margin: 40px 2%;
    border-top: 2px solid var(--border-color);
    border-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

input,textarea {
    border: none;
    font-size: 20px;
    box-sizing: border-box;
    border-radius: 6px;
}

textarea:invalid,
input:invalid {
    /*border: 1px solid red;*/
}

textarea:focus,
input:focus {
    border: 1px solid #272727;
    outline: none;
    box-shadow: 0;

}

textarea:hover,
input:hover {
    border: 1px solid #272727;
}

input:outline {
    outline: none;
}

textarea::placeholder,
input::placeholder {
    color: #aaaaaa;
}

button {
    cursor: pointer;
    border: 0;
    line-height: 1;
    user-select: none;
}

select {
    outline: none;
}

header .search {
    padding: 4px 10px;
    font-size: 16px;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
}
.show{
    display: block!important;
}
.symbol {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: antiquewhite;
}

.form-group {
    background-color: #fafafa;
    padding: 3px 10px 6px;
    border-radius: 8px;
    position: relative;
}

.form-select {
    box-shadow: none !important;
    background-color: #f8f6f2;
    border-color: #f8f6f2;
    color: #676767;
    transition: color 0.2s ease;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    padding-left: 1rem;
    font-size: 14px;
    border-radius: 0.85rem;
}

.form-control {
    padding: 0 15px;
    min-height: 45px;
    border-radius: 5px;
    border: 1px solid #8c8c8c95;
    box-shadow: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    background-color: white;
    outline: none;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    margin: 0 4%;
    opacity: 0.1;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
}

.separator:not(:empty)::before {
    margin-right: .25em;
}

.separator:not(:empty)::after {
    margin-left: .25em;
}

.grid {
    display: grid;
}

.grid_filter {
    column-gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid_results {
    gap: 0.5rem;

    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid_stats {
    font-size: .8rem;
    margin: 8px 0;
    row-gap: 1rem;
    column-gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid_stats ion-icon {
    font-size: 20px;
}

.grid_stats .stat .snr {}

.grid_fast {
    row-gap: 1rem;
    column-gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid_butons {
    margin: 6px;
    row-gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.breadcrumb_nav a {
    text-decoration: none;
    color: #555;
}

.breadcrumb_nav a:hover {
    text-decoration: underline;
    color: #000;
}

.breadcrumbs_list {
    display: flex;
    font-size: 14px;
    line-height: .875rem;
    list-style-type: none;
    padding: 0 0 0.5rem 0;
    margin: 0;
    overflow-y: hidden;
}

.breadcrumbs_list li {
    margin-right: 0.25rem;
    flex: 0 0 auto;
}

.breadcrumbs_list li:not(:last-of-type):after {
    content: "/";
    padding: 0 0 0 0.25rem;
    display: inline-block;
}

#header_background {
    background-image: linear-gradient(to top, #ffffff 30%, #ffffffcc 60%, rgb(27 26 26 / 0%) 100%);
    bottom: 0px;
    left: 0;
    right: 0;
    content: "";
    height: calc(100% / 2);
    position: absolute;
}

#header_top,#header_bottom {
    color: white;
    display: flex;
    justify-content: space-between;
    max-width: 1130px;
    margin: auto;
    width: 100%;
}

#header_bottom {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

#hb_left {
    width: 202px;
}

#hb_right {
    width: 102px;
}

#model_info p {
    font-weight: 300;
}
#logoText{
    margin-left: 0px;
    font-size: 17px;
    font-weight: bold;
    color:var(--color_1);line-height:1
}
#logoText2 {
    font-size: 5rem;
}

#search_header {
    display: none;
    width: 100%;
    max-width: 600px;
}

#search {
    border-radius: 40px;
    padding: 10px 20px;
    width: 100%;
}

.tag_btn {
    white-space: nowrap;
    padding: 2px 14px;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    margin: 6px 4px;
    border: 1px solid #d73bff;
}

.tag_btn:hover {
    background: #d73bff;
}

.tag_btn .cr_count {
    font-size: 12px;
    color: #d9d9d9;
}

#fast_buttons {
    margin-top: 30px;
}

#fast_buttons a {
    text-decoration: none;
    color: white;
}

#fast_buttons .fast_search {
    background: blueviolet;
    height: 150px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0px 4px 8px #343434;
}

#fast_buttons .icon {
    font-size: 50px;
}

#home_categories {
    text-align: center;
}

#home_categories .category {
    padding: 10px 20px;
    border: 1px solid #ff18e7;
    display: inline-block;
    margin: 10px;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    font-size: 18px;
}

#home_countries {}

#home_countries .country {
    display: inline-block;
    font-size: 20px;
    box-shadow: 0px 3px 7px #1010103d;
    margin: 10px;
    border-radius: 8px;
    padding: 14px 20px;
    background: #ffffff1f;
    color: white;
    cursor: pointer;
    user-select: none;
    width: 150px;
}

#home_countries .country .emoji {
    font-size: 50px;
}

#search_widget {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 4px 5px;
}

#country_input,
#city_input {
    display: none;
    background: cornflowerblue;
    border-radius: 3px;
    padding: 2px 6px;
    border-radius: 13px 4px 4px 13px;
    padding-right: 2px;
}

#city_input {
    border-radius: 4px;
    margin-left: 4px;
}

#remove_country_input,
#remove_city_input {
    cursor: pointer;
    user-select: none;
    /* border-left: 1px solid #a6a6a6; */
    margin-left: 2px;
    /* padding: 0 1px; */
    height: 20px;
    border-radius: 4px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.search_btn_header {
    font-size: 1.4rem;
    background: #ff007a;
    height: 24px;
    width: 30px;
    padding: 2px 6px;
    border-radius: 4px 24px 24px 4px;
    cursor: pointer;
    user-select: none;
    text-align: center;
}

#remove_country_input:hover,
#remove_city_input:hover {
    background: #5486e0;
}

#search_input_holder {
    flex-grow: 1;
}

#filter_nav {
    position: relative;
    display: none;
    max-width: 1218px;
    margin: 0px auto;
    padding: 0 2rem;
    margin-bottom: 0;
    background-color: white;
    border-radius: 10px 10px 0 0;
    padding-top: 5px;
}

#filters {
    margin-bottom: -2px;
}

#filters .filter {
    display: inline-block;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    padding-bottom: 3px;
    padding-right: 4px;
    margin: 0 5px;
}

#filters .active {
    color: #483d8b;
    border-bottom: 2px solid #483d8b;
}

#filters ion-icon {
    font-size: 16px;
    margin-right: 5px;
    font-weight: 600;
}

#side_left {
    position: relative;
    width: 100%;
    max-width: 300px;
    background: white;
    margin-bottom: 5px;

}

#side_left_content {
    max-width: 300px;
}

#side_right {
    margin: auto;
    max-width: 1000px;
    width: 100%;
    padding: 10px 10px 0 30px;
    margin-top: 0;
    min-height: 100vh;
    flex-grow: 1;
}

#model_left {
    position: relative;
    width: 30%;
    display: inline-block;
    vertical-align: top;
    padding: 8px;
    text-align: center;
}

#model_right {
    width: 67%;
    display: inline-block;
    vertical-align: top;
}

#categories {
    text-align: center;
    padding: 10px;
}

#categories .category {
    display: inline-block;
    box-shadow: 0px 3px 4px #e4e1e1;
    margin: 5px 2px;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    color: #015389;
}

#countries {
    padding: 10px;
    text-align: center;
}

#countries .country {
    display: inline-block;
    box-shadow: 0px 3px 4px #e4e1e1;
    margin: 5px 2px;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    color: #483d8b;
    font-size: 40px;
}

#results {}

#results .result {
    position: relative;
    transition: all .25s;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #dadada;
    background: white;

}

#results .result:hover {
    box-shadow: 0px 2px 7px #d1bce6;
}

#results .result .rmflag {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 30px;
}

#results .avatar_holder {
    height: 16rem;
    overflow: hidden;
    padding: 5px;
}

#results .avatar_sub_holder {
    height: 100%;
    background: black;
    box-shadow: 0px 2px 4px #ccc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#results .avatar {
    width: 100%;
    max-width: 100%;
    object-position: center;
    object-fit: cover;
    vertical-align: middle;
}

#results a {
    text-decoration: none;
}

#results .result_btn {
    border-radius: 12px;
    border: 1px solid #ff00b5;
    box-shadow: 0px 2px 4px #ffc8ea;
    padding: 10px;
    margin: 10px;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 14px;
    background: #fff0f3;
    color: #ff00b5;

}

#results .result_btn:hover {
    background: #ff00b5;
    color: white;
}

#results .ofurl {
    margin: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #888;
    font-size: 14px;
}

#results .ofurl a {
    color: black;
}

#results .bottom_btn {
    border-radius: 4px;
    padding: 10px;
    margin: 0 3px;
    font-size: 14px;
    font-weight: 500;
    color: black;
}

#results .bottom_btn:hover {
    background-color: #b6e1ff;
}

#model {
    border-radius: 8px;
    box-shadow: 0px 13px 17px #e6e6e6;
}

#model .sub_btn {
    border: 1px solid;
    padding: 12px;
    background: #e800e8;
    color: white;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;

}

#model .sub_btn:hover {
    background: #da00da;
}

_underline {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    user-select: none;
    margin: 2px 0;
    padding: 14px 5%;
}

_underline_admin {
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    user-select: none;
    margin: 2px 0;
    padding: 5px 5%;
    color: #e49300;
}
.drop_toggler{
    position: relative;
}
.dropdown-menu{
    overflow: auto;
}
.dropdown-item{
    cursor: pointer;
    align-items: center;
}
.css-1om0hkc {
    user-select: none;
    width: 1em;
    height: 1em;
    display: flex;
    fill: currentcolor;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

/*price select*/
.price_selector {
    color: inherit;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin: 0 5px;
    z-index: 3;
    padding-bottom: 2px;
    color: #483d8b;
}

.price_btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    background: unset;
}

.price_flag {
    margin-bottom: -2px;
}

.price_dropdown {
    margin-top: 2px;
    position: absolute;
    background: white;
    border-top: 0;
    width: 98%;
    display: none;
    z-index: 2;
    left: 0;
    max-width: 150px;
    box-shadow: 0px 2px 4px #d5d5d5;
    border-radius: 0px 0 6px 6px;
}

.price_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.price_list div {
    cursor: pointer;
    padding: 8px 10px;
    display: flex;
    align-items: center;
}

.price_list div:hover {
    background: #eee;
}

/*more select*/
.more_list ion-icon {
    font-size: 18px;
    margin-bottom: -3px;
}

.more_selector {
    color: inherit;
    position: relative;
    width: 30px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
}

.more_btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    background: white;
    margin-bottom: -2px;
}

.more_selector .active {
    color: #483d8b;
    border-bottom: 2px solid #483d8b;
}

.more_flag {
    font-size: 18px;
}

.more_dropdown {
    margin-top: 2px;
    position: absolute;
    background: white;
    border: 1px solid #eee;
    border-top: 0;
    width: 98%;
    display: none;
    z-index: 2;
    max-width: 200px;
    box-shadow: 0px 2px 4px #42424285;
    border-radius: 0px 0 6px 6px;
    left: 20%;
}

.more_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.more_list div {
    cursor: pointer;
    padding: 8px 10px;
}

.more_list div:hover {
    background: #483d8b;
    color: white;
}

/*language select*/
.language_selector {
    color: black;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    z-index: 3;
}

.language_btn {
    box-shadow: 0px 1px 3px 0px #42424285;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background: var(--background);
    color: var(--color);
    font-weight: inherit;
}

.language_dropdown {
    margin-top: 20px;
    position: absolute;
    border-top: 0;
    width: 100%;
    display: none;
    z-index: 2;
    background: var(--background);
    color: var(--color);
    box-shadow: 0px 1px 2px 0px #42424285;
}

.language_flag {
    line-height: 1;
}

.language_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.language_list li {
    cursor: pointer;
    padding: 8px 10px;
}

.language_list li:hover {
    background: #53B7F8;
    color: white;
}

.header_account_selector {
    color: var(--color);
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    z-index: 3;
}

.header_account_btn {
    box-shadow: 0px 1px 3px 0px #42424285;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background: var(--background);
    color: var(--color);
    font-weight: inherit;
}

.header_account_dropdown {
    padding-top: 2px;
    position: absolute;
    background: var(--background);
    color: var(--color);
    border-top: 0;
    display: none;
    z-index: 2;
    box-shadow: 0px 3px 2px 0px #4242424f;
    width: 200px;
    right: 0;
    border-radius: 0 0 5px 5px;
}

.header_account_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.header_account_list .a_drop_btn {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header_account_list .a_drop_btn i {
    display: flex;
}

.header_account_list .a_drop_btn:hover {
    background: #53B7F8;
    color: white;
}

.create_selector {
    color: var(--color);
    position: relative;
    width: 110px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    z-index: 3;
}

.create_btn {
    box-shadow: 0px 1px 3px 0px #42424285;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background: var(--background);
    color: var(--color);
    font-weight: inherit;
}

.create_dropdown {
    padding-top: 2px;
    position: absolute;
    background: var(--background);
    color: var(--color);
    border-top: 0;
    display: none;
    z-index: 2;
    box-shadow: 0px 3px 2px 0px #4242424f;
    width: 200px;
    left: 0;
    border-radius: 0 0 5px 5px;
}

.create_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.create_list li {
    cursor: pointer;
    padding: 8px 16px;
}

.create_list li:hover {
    background: #53B7F8;
    color: white;
}

.after-arrowdown::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

#suggests .suggest_result {
    display: flex;
    cursor: pointer;
    padding: 10px;
    background: #f3f3f3;
    margin-top: 3px;
    overflow: hidden;
}

#suggests .suggest_result img {
    width: 60px;
    height: 60px;
}

#suggests .suggest_result:hover {
    background: #f0f0f0;
}

#suggests .suggest_result .sr_title {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

#suggests .suggest_result .sr_address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#suggests .suggest_result .sr_type {
    color: cornflowerblue;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

#ajax_top_full .ajax_content,
#ajax_bottom_full .ajax_content {
    background: #222;
    color: white;
}

#link_section {
    display: none;
}

#content {

    min-height: calc(100vh - 280px);
    position: relative;
}

.pad_1 {
    padding: 10px;
    padding-bottom: 2rem;
    margin:auto;
}

.pad_2 {
    padding: 1rem 40px;
}

.pad_3 {
    padding: 60px 10px;
    padding-bottom: 0;
}

#bottom {
    width: 100%;
    z-index: 1005;
    box-shadow: 0 -2px 6px 1px rgba(0, 0, 0, .04);
    flex-shrink: 0;
    background-color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    padding: 10px 0;
    max-height: 65px;
}
#bottom .bottom_btn{
    min-height: 45px;
}
header .el {
    display: flex;
    align-items: center;
    justify-content: center;
}

header a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    display: block;
}

#logo_header {
    margin: auto;
}

#logo_header a {
    margin: 0 4px;
    padding: 0 10px;
}

.auth_forms .auth_form {
    display: none;
}

.auth_forms .show {
    display: block !important;
}

.auth_forms .submit_form_btn {
    width: 100%;
}

.indicator-progress {
    display: none;
}

.verification {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.verification__fields {
    height: 25%;
    margin: 20px 0;
}

.verification__field {
    border: none;
}

.verification__field:hover,
.verification__field:focus {
    box-shadow: none;
}

.verification__input {
    border: 2px solid blueviolet;
    letter-spacing: 1.7px;
    padding: 0;
    margin: 6px;
    outline: none;
    stroke: none;
    box-shadow: none;
    width: 150px;
    height: 50px;
    transition: 0.2s 0s ease-out;
    width: 60px;
    height: 60px;
    border-radius: 9px;
    padding: 16px 0;
    text-align: center;
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: bold;
    background: var(--kt-input-solid-bg);
}

.verification__input:hover {
    box-shadow: 0 0 0 0.25rem var(--kt-secondary) !important;
}

.verification__input:focus {
    box-shadow: 0 0 0 0.25rem var(--kt-primary) !important;
}

.plink,
.slink {
    color: inherit;
    text-decoration: none;

}

.plink .acard {
    padding: 14px 0;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    width: 31%;
    margin: .4% 0;
    height: 80px;
    font-weight: 600;
}

.slink .acard {
    border: 2px solid var(--border-color);
    border-radius: 3px;
    text-align: left;
    margin: 8px 0;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.plink .p_icon {
    font-size: 38px;
}

.slink .p_icon {
    font-size: 22px;
    margin-right: 6px;
    height: 22px;
}

#quantity {}

.btn:disabled {
    cursor: default;
    opacity: .2;
}

.btn_underline {
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}

.btn_red {
    color: red;
    border: 1px solid rgb(255, 0, 0);
    background: #fff1f1;
}

.btn_green {
    max-width: 200px;
    color: #fff;
    border: 1px solid var(--color_1);
    background: #eef9ff;
    color: var(--color_1);
}

.btn_green:hover {
    color: #000000;
    background: #caedff;
}

.btn_red:hover {
    border: 1px solid rgb(200, 0, 0);
    color: rgb(200, 0, 0);
    background: #fedbdb;
}

.btn_black {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    background: #565656;
}

.btn_black:hover {
    border: 1px solid rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    background: #000000;
}

.btn_yellow {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    background: gold;
}

.btn_yellow:hover {
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background: yellow;
}

/* Radion input as button with border as selected */
.btn_radio_input {
    display: none;
}

.btn_radio {
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #e9e9e9;
    background: white;
    border-radius: 5px;
    transition: border 0.3s ease, background-color 0.3s ease;
}

.btn_radio_input:checked+.btn_radio {
    border: 2px solid #4CAF50;
}

.invisible,
.visible {
    transition: opacity 0.4s ease;
}

.invisible.visible {
    opacity: 1;
}

.element_disabled {
    opacity: 0.4;
    pointer-events: none;
}


/*************** CART **********************/

.cart_count {
    position: absolute;
    top: -11px;
    right: -16px;
    background: black;
    color: white;
    padding: 3px 5px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    width: 8px;
    text-align: center;
}

.cart_item {
    border: 1px solid black;
    margin: 10px 0;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    padding-right: 8px;
    background-color: white;
}

.cart_item .row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart_item .col1 {
    display: table;
}

.cart_item select {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 10px;
}

.item_quantity {
    display: table-cell;
    min-width: 86px;
}

.item_interval {
    margin-left: 10px;
}

.item_service {
    text-align: left;
    margin-left: 10px;
}

.item_service span {
    margin: 0 2px;
    vertical-align: middle;
}

.item_service svg {
    font-size: 24px;
}

.item_price {
    padding-left: 4px;
}

.item_price,
.total_amount {
    font-family: sans-serif;
}

.delete_cart_item {
    font-size: 24px;
}

.delete_cart_item:hover {
    color: red;
    cursor: pointer;
    user-select: none;
}

.progtitle {
    font-size: 3em;
    font-weight: bold;
}

.tcel {
    display: table-cell;
    border: 4px solid transparent;
}

.grid_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Adjust the number of columns and their size as needed */
    grid-gap: 0px;
    /* Adjust the gap between cells */
}

.grid_item {
    border: 1px solid black;
    padding: 10px;
}

.grid_item2 {
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    padding: 10px;
}

.service_features .h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.service_feature {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.service_feature .sf_icon {
    font-size: 35px;
    padding: 2;
}

.service_feature .sf_title {
    margin-left: 10px;
}

.article_h2 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contenteditable {
    position: relative;
}

.translate_btn {
    position: absolute;
    background: orange;
    color: black;
    font-size: 16px;
    padding: 2px 8px;
    border-radius: 4px;
    right: 0;
    cursor: pointer;
    font-weight: 600;
    z-index: 22
}
.deleted{
    text-decoration: line-through;
}

/*faq*/
#section_faq{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.faq_qa{
    background: white;
    border: 1px solid #eee;
    height: fit-content;
    
}
.faq_q{
    user-select: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.faq_a{
    height:0;
    overflow: hidden;
    transition: all .3s ease;
}
.faq_a.show{
    height: unset;
}
.faq_toggler{
    line-height: .8;
    transition: .2s;
    font-size: 24px;
    transform: rotate(0deg);
}
.faq_toggled{
    transform: rotate(90deg);
}
/*footer*/
.footer-container {
    background-color: rgb(255, 255, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
}

.footer-container .footer-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
    max-width: 1366px;
    gap: 20px 0;
}

.footer-container .footer-content-wrapper .footer-content-box.footer-info {
    max-width: 400px;
    padding: 0 10px;
}

.footer-container .footer-content-wrapper .footer-content-box.footer-categories {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 300px;
    min-width: 150px;
    padding: 0 10px;
}

.footer-container .footer-content-wrapper .footer-content-box.footer-resources {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 300px;
    min-width: 150px;
    padding: 0 10px;
}

.footer-container .footer-content-wrapper .footer-content-box .footer-content-box_title {
    padding: 10px 0;
    margin-bottom: 10px;
    position: relative;
    text-shadow: 0 1px 1px rgba(19, 66, 118, .25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
}

.footer-container .footer-content-wrapper .footer-content-box p {
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-container .footer-content-wrapper .footer-content-box .footer-content-box_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(100% - 2px);
    height: 2px;
    width: 25px;
    background-color: #fb3;
    -webkit-box-shadow: 0 0 5px 1px rgba(19, 66, 118, .1);
    box-shadow: 0 0 5px 1px rgba(19, 66, 118, .1);
}

.footer-container a {
    text-decoration: none;
    color: #000000;
}

.footer-container .footer-content-wrapper .footer-content-box p a {

    font-weight: 700;
}

.footer-container .footer-content-wrapper .footer-content-box .footer-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2.5px 0;
}

.footer-container .footer-copy-wrapper {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(19, 66, 118, .1);
    width: 100%;
    max-width: 1366px;
}

.footer-container .footer-copy-wrapper .copyright-text {
    margin-bottom: 10px;
}

.footer-container .footer-copy-wrapper .copyright-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.footer-container .footer-social {
    font-size: 30px;
}

/* Style the list */
ul.breadcrumb {
    padding: 4px 0;
    list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;

}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

#contact_form input {
    border: 1px solid #000;
    padding: 10px 16px;
    font-size: 20px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
}


/*reponsive*/
@media (max-width: 1200px) {
    .bottom_preview_btn button{
        display:flex!important;
    }
    .bottom_btn_text{
        display:none;
    }
    #col_short{
        display:none;
        position: absolute;
        background: white;
        padding-top: 50px;
        top: -50px;
        width: 100%;
        z-index: 777;
        height: 100%;
        padding-bottom: 70px;
    }
    
}
@media (max-width: 800px) {
    h2{
        font-size:1.2rem;
    }
    body{
        background-color: #f8f8f7!important;
    }
    #logoText{
        font-size: 16px;
    }
    #header_top{
        padding:4px!important;
    }
    #header #top_steps .step_text{
        display:block;
        font-size: 12px;
    }
    #header #top_steps .step_done .step_text{
        display:none;
    }
    #top_steps .step_done .step_check_icon{
        display:flex;
    }
    #header #top_steps li{
        padding-left:1.4rem;
        padding-right:.3rem;
    }
}
@media (max-width: 600px) {
    .form-group{
        padding:0;
    }
    .accd_b_lines{
        padding:0;
    }
    .bottom_btn{
        width: auto!important;
    }
    #logoText{
        font-size: 14px;
    }
    /*#top_steps{
        position: absolute;
        top:46px;
        width: 100%;
        background-color: white;
        border-top: 1px solid #eee;
        padding: 5px;
    }*/
    #logoText{
        display: none;
    }
    .pad_1{
        padding:1rem 3%;
    }
    #accd_menu .section_name,#accd_menu .product_name{
        display:none;
    }
}
@media (max-width: 400px) {
    
    #header #top_steps .step_4{
        display: none;
    }
}