:root {
    --main-color: #12335e;
    --secondary-color: #8cc14a;
    --third-color: #76a639;
}

body {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}


p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: bold;
}

h1 {
    font-size: 25px;
    color: var(--main-color);
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

.main-color {
    color: var(--main-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.form-control,
.form-select {
    height: 40px;
    border-radius: 10px;
    border: 1px solid #c8c6c6;
}

a:hover {
    color: var(--secondary-color);
}

input[type="file"] {
    display: none;
}

section {
    padding: 30px 0;
    position: relative;
}

.displayTable {
    display: table;
    width: 100%;
}

.displayTableCell {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

textarea:focus,
input:focus {
    outline: none;
}

.transition {
    transition: all 0.3s;
}

.topHeader {
    padding: 20px;
}

.topHeader .phone {
    margin: 0 20px;
}

.topHeader .phone a,
.topHeader .email a {
    text-decoration: underline;
}

.account {
    display: flex;
    color: #000;
    cursor: pointer;
}

.account .fullName {
    padding-left: 10px;
    font-size: 13px;
}

.contentHeader {
    display: table;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.contentHeader .boxLogo {
    display: table-cell;
}

.backgroundNavbar {
    background-color: #f8f9fa;
}

.fixedNavbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.boxSearch {
    display: table-cell;
    width: 160px;
    text-align: right;
}

.boxSearch .searchBar {
    position: relative;
}

.searchContainer {
    overflow: hidden;
    height: 36px;
    padding-left: 160px;
    width: 160px;
    transition: all 0.3s ease-out;
}

.searchContainer.active {
    padding-left: 0;
}

.search {
    height: 36px;
    border-radius: 20px;
    border: 1px solid;
    text-indent: 10px;
    width: 100%;
    box-sizing: border-box;
}

.searchIcon {
    background-color: unset;
    position: absolute;
    right: 2px;
    font-size: 20px;
    top: 2px;
    cursor: pointer;
    color: #fff;
}

.contentHeader .boxMenu .menu {
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.contentHeader .boxMenu .menu li {
    list-style: none;
    display: inline-block;
    padding: 25px 20px;
    position: relative;
}

.contentHeader .boxMenu .menu li:hover>.subMenu {
    display: block;
}

.contentHeader .boxMenu .menu li>.subMenu {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 2;
    min-width: 270px;
    padding: 15px 0px;
    margin: 0;
    background: #fff;
    box-shadow: 0 0 10px #bbb;
}

.contentHeader .boxMenu .menu li>.subMenu>li {
    display: block;
    padding: 0;
}

.contentHeader .boxMenu .menu li>.subMenu>li a {
    display: block;
    padding: 10px 20px;
}

.contentHeader .boxMenu .menu li i {
    font-size: 12px;
    margin-left: 5px;
}

.contentHeader .boxMenu .menu li a:hover {
    color: var(--main-color);
}

.contentHeader .active {
    font-weight: 700;
}

.account.dropdown-toggle::after {
    margin-top: 8px;
}

.dropdown-item:active {
    background-color: var(--main-color);
}

.banner {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    color: #fff;
}

/* Faq page */
.boxSearchFaq .searchFaq {
    border: 1px solid #fff;
    background: transparent;
    height: 40px;
    width: 100%;
    border-radius: 35px;
    color: #fff;
    padding: 0 40px 0 20px;
}

.boxSearchFaq .searchFaq::placeholder {
    color: #fff;
}

.boxSearchFaq i {
    position: absolute;
    right: 15px;
    font-size: 20px;
    top: 10px;
    color: #fff;
}

.list-noborder-bot li:last-child a {
    border-bottom: none !important;
}

/* About us page */
.bgText {
    background-color: var(--secondary-color);
    padding: 20px;
    color: white;
}

.box {
    border-radius: 20px;
    border: 1px solid #bbb;
    padding: 30px 30px;
    margin-bottom: 20px;
}

.documents {
    padding: 30px 0;
}

.documents .box .btnCheck {
    font-style: normal;
    font-weight: 700;
    border: 2px solid var(--secondary-color);
    height: 40px;
    width: 100%;
    border-radius: 24px;
    color: var(--secondary-color);
    background: #fff;
}

.documents .listToggle {
    padding: 0;
}

.documents .listToggle li {
    list-style: none;
    border-bottom: 1px solid #bbb;
    margin-bottom: 10px;
}

.documents .listToggle li:last-child {
    border-bottom: none;
}

.documents .listToggle li h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    padding: 15px 10px 15px 0;
}

.documents .listToggle li h6 i {
    position: absolute;
    right: 0;
    color: #858585;
}

.documents .listToggle li p {
    font-size: 14px;
    line-height: 22px;
    display: none;
}

.feeTable th {
    font-style: normal;
    font-weight: 700;
    padding: 15px 15px;
}

.feeTable td {
    padding: 15px 15px;
}

.apply .item {
    text-align: center;
    margin-bottom: 40px;
}

.apply .item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.goToHome {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    background: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 13px 50px;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
}

.goToHome:hover {
    color: #fff;
}

.imageSliderControl {
    text-align: center;
}

.imageSliderControl .fa-solid {
    color: var(--main-color);
    height: 46px;
    width: 46px;
    text-align: center;
    padding: 12px;
    border: 2px solid;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    margin: 30px 5px;
}

.imageSliderControl .fa-solid:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.signin-form .mb-3,
.form-submit .mb-3,
.booking-form .mb-3 {
    position: relative;
    margin-bottom: 25px !important;
}

.mb-3.error input,
.mb-3.error textarea,
.mb-3.error select {
    border-color: red;
}

.mb-3.error .form-text {
    display: block;
}

.form-text {
    color: red;
    position: absolute;
    display: none;
    font-size: 13px;
}

.custom-file-upload {
    display: block;
    text-align: center;
    background: #c8c6c6;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.custom-file-upload input[type="file"] {
    display: none;
}

/* Pricing */
.tabList .item a {
    display: block;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 16px;
}

.tabList .item a.active {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-top: 6px solid var(--main-color);
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    position: relative;
}

.tabList .item a.active:before {
    position: absolute;
    content: "";
    height: 2px;
    background: #ffffff;
    width: 100%;
    left: 0;
    bottom: -1px;
}

.feeTable th {
    background: #fafafa;
}

/* Terms and condition page */
.consularServices {
    padding-left: 50px;
}

.consularServices li {
    position: relative;
    list-style: none;
    margin: 25px 0px;
}

.consularServices li.list1:before {
    position: absolute;
    content: "1";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list1:before {
    position: absolute;
    content: "1";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list2:before {
    position: absolute;
    content: "2";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list3:before {
    position: absolute;
    content: "3";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list4:before {
    position: absolute;
    content: "4";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list5:before {
    position: absolute;
    content: "5";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list6:before {
    position: absolute;
    content: "6";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

.consularServices li.list7:before {
    position: absolute;
    content: "7";
    left: -50px;
    width: 35px;
    height: 35px;
    background: #d9d9d9;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
    top: -5px;
}

/* Apply page */
.titleStep {
    color: #c9c3c3;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    border-color: #c9c3c3;
    width: 130px;
}

.titleStep p {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border: 2px solid;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 10px;
}

.titleStep.active {
    color: #000;
    border-color: #000;
}

.titleStep.completed p {
    display: none;
}

.titleStep .fa-solid.fa-check {
    display: none;
}

.titleStep.completed .fa-solid.fa-check {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border: 2px solid;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: #fff;
    margin-bottom: 10px;
}

.titleStep.completed {
    color: #000;
}

.titleStep .line {
    width: calc(50%);
    border-bottom: 2px solid;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

.formApply .formBox {
    margin-bottom: 20px;
}

.formAirport {
    display: none;
}

.formApply .step-2,
.formApply .step-3,
.step-4 {
    display: none;
}

.formApply .boxService {
    margin-top: 10px;
}

.formApply .formBox .form-check {
    margin-bottom: 10px;
}

.formApply .addOn {
    color: var(--main-color);
}

.formApply .reviewOrder {
    border: 1px solid #bbb;
    border-radius: 10px;
    padding: 15px;
}

.formApply .reviewOrder .type {
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    height: 24px;
    margin-bottom: 0;
}

.formApply .reviewOrder .type img {
    margin-right: 5px;
}

.formApply .reviewOrder .touristList {
    padding-left: 25px;
    margin-bottom: 0;
}

.formApply .reviewOrder .touristList p {
    margin-bottom: 0;
}

.formApply .reviewOrder .discountBox {
    background: #fafafa;
    border: 1px dashed #abb5be;
    padding: 5px 20px 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.formApply .reviewOrder .discountBox p {
    margin-bottom: 0px;
    font-size: 14px;
}

.formApply .reviewOrder .feeBox {
    font-size: 16px;
}

.formApply .reviewOrder .fee {
    font-weight: 600;
    padding-bottom: 6px;
}

.totalFee {
    font-size: 20px;
    color: var(--main-color);
    font-weight: 600;
    padding-bottom: 6px;
}

.btn-action-bar {
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);
    z-index: 2;
    padding: 12px;
}

.revertTotal {
    color: #b3b0b0;
}

/* applicant result */
.applicant {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.applicant .applicantTitle {
    margin: 0;
    background: #d9d9d9;
    padding: 10px 18px;
}

.applicantInfo {
    margin: 1rem;
}

.applicant .info {
    margin-bottom: 0;
}

.applicant .item {
    margin-bottom: 10px;
}

/* applicant form */
.applicantForm {
    padding: 20px;
}

.applicantForm .infoBoxUpload:hover .infoUpload {
    display: flex;
}

.applicantForm .infoBoxUpload .infoUpload {
    display: none;
    background: #fff;
    box-shadow: 0 0 10px #bbb;
    border-radius: 7px;
    padding: 12px;
    position: absolute;
    width: 350px;
    z-index: 1;
    top: 30px;
    left: 0;
}

.applicantForm .infoBoxUpload .infoUpload p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 0;
}

.formApply .apply-file-upload input[type="file"] {
    display: none;
}

.formApply .apply-file-upload {
    display: block;
    text-align: center;
    background: #fafafa;
    padding: 30px;
    cursor: pointer;
    height: 200px;
    position: relative;
}

.apply-file-upload.passport-photo {
    background-image: url("../images/passport-photo.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.apply-file-upload.portrait-photo {
    background-image: url("../images/portrait-photo.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.formApply .apply-file-upload i {
    font-size: 45px;
    color: #abb5be;
}

.formApply .apply-file-upload p {
    color: var(--secondary-color);
    text-decoration: underline;
}

.formApply .addBox {
    color: #0f5bed;
    text-decoration: underline;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
}

.formApply .formBox .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-right: 8px;
    margin-left: -24px;
}

.boxPolicy {
    max-height: 200px;
    overflow-y: scroll;
    border-radius: 10px;
}

/* Profile page */
.profile-action .btn {
    width: 150px;
}

.orderPagination {
    display: flex;
    margin-top: 30px;
}

.orderPagination .pagiList {
    padding-left: 10px;
}

.orderPagination .pagiList li {
    display: inline-block;
    padding: 0 3px;
}

.orderPagination .pagiList li a {
    display: inline-block;
    line-height: 16px;
    font-weight: 400;
}

.orderPagination .pagiList li.active {
    color: var(--main-color);
    font-weight: 600;
}

.orderTable th,
.orderTable td {
    padding: 20px 7px;
}
/* ###################### footer ########################## */
footer {
    padding: 50px 0 0;
    background: var(--main-color);
    color: #fff;
}

footer li a {
    color: #fff;
    display: block;
    padding: 3px 0;
    line-height: 21px;
    text-decoration: underline;
}

footer .item {
    padding: 2px 0;
}

.fee-list .col,
.fee-list .col-4 {
    padding-right: 0;
    padding-left: 0;
}

.fee-list {
    border: 1px solid #bbb;
    border-radius: 24px;
    overflow: hidden;
}

.fee-list p {
    padding: 20px;
    margin: 0;
}

.fee-list .col,
.fee-list .col-4 {
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
}

.fee-list .row:last-child .col,
.fee-list .row:last-child .col-4 {
    border-bottom: none;
}

.fee-list .row:first-child .col,
.fee-list .row:first-child .col-4 {
    background: rgba(250, 250, 250, 1);
}

.fee-list .row:first-child p {
    font-size: 14px;
    font-weight: 700;
}

.sub-title {
    font-size: 16px;
    padding: 7px 0;
    color: #fff;
}

.booking-previous {
    padding-top: 0;
}

.btn-booking-previous {
    display: none;
}

.booking-form-2 {
    display: none;
}

.booking-form-12 {
    padding-bottom: 50px;
    min-height: 500px;
}

/* Button */
.btn {
    border-radius: 10px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
}

.btn-outline-primary {
    border: 1px solid var(--secondary-color);
    background: #fff;
    color: var(--secondary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-light.active {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-booking {
    width: 110px;
    height: 50px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: #fff;
    background-color: var(--third-color);
    border-color: var(--third-color);
}

.btn-primary:active:focus,
.btn-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgb(140 193 74 / 50%);
}

/* Border */
.box-border {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 15px;
}

label {
    font-weight: 500;
}

.desc-italic {
    color: #636363;
    font-size: 13px;
}

.select2-container--default .select2-results__group {
    color: #ccc;
    margin: 10px 0;
    border-top: 1px solid;
    padding: 0;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 10px;
    border: 1px solid #c8c6c6;
    background: #fff;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2 {
    width: 100% !important;
}

.modal-open .select2-container {
    z-index: 1111;
}

.select2-block {
    width: 100%;
    position: relative;
}

.select2-block .select2.select2-container.select2-container--default {
    z-index: unset;
}

/* Validate */
.error .select2-container--default .select2-selection--single,
.error .apply-file-upload {
    border-color: red;
}

.select2-block.error .form-text {
    display: inline-block;
    left: 0;
    top: 40px;
}

/* Upload */
.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.result-upload {
    height: 200px;
    text-align: center;
    position: relative;
    background: #fafafa;
}

.result-upload-btn {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
}

.result-upload-img {
    max-width: 100%;
    height: 200px;
}

.edit-applicant {
    text-decoration: underline;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
}

/* Date picker */
.ui-widget.ui-widget-content {
    z-index: 1200 !important;
}

/* Payment */
.payment-item {
    border-right: 1px solid #bbb;
}

.rv-service-name {
    font-weight: 700;
}

.box-applicant {
    position: relative;
}

.box-applicant-error {
    color: red;
    position: absolute;
    display: none;
    font-size: 13px;
}

.btn-payment {
    height: auto;
    width: 280px;
    text-align: center;
    font-size: 18px;
    padding: 10px;
}

/* Language */
.change-language {
    font-weight: bold;
}

.list-cats .active,
.change-language .active {
    color: var(--main-color);
}

/* Signin & signup */
.btnSocial {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

/* Table */
.table-bordered {
    border-color: #bbb;
}

/* Loading */
.loader {
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.4;
    display: none;
    z-index: 5555;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    -webkit-animation-delay: -0.036s;
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    -webkit-animation-delay: -0.072s;
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    -webkit-animation-delay: -0.108s;
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    -webkit-animation-delay: -0.144s;
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    -webkit-animation-delay: -0.18s;
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    -webkit-animation-delay: -0.216s;
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    -webkit-animation-delay: -0.252s;
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    -webkit-animation-delay: -0.288s;
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@-webkit-keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

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

.booking-form-12 .form-control[readonly] {
    background-color: #ffffff;
}

.phone-dial {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.paymethod {
    position: absolute;
    left: 30px;
}

.upload-result {
    height: 200px;
    overflow-y: auto;
}

.upload-item {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    margin: 0 10px 10px 0;
}

.upload-remove {
    cursor: pointer;
}

.result-eligibility {
    border: 1px solid #d9d9d9;
    background: #f8f9fa;
    padding: 20px;
}

#change-currency {
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.popup-text {
    text-align: left;
    font-size: 16px;
}

.alert-promo {
    color: red;
    display: none;
    font-size: 13px;
}

.success-promo {
    color: green;
    display: none;
    font-size: 13px;
}

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

.text-uppercase {
    text-transform: uppercase;
}

.text-disclaimer {
    text-align: center;
    font-size: 14px;
    line-height: 2;
}

.processing-check {
    margin-bottom: 15px;
}

.processing-note {
    display: none;
    background-color: #eceff1;
    margin-top: 6px;
    padding: 15px;
    position: relative;
    font-size: 14px;
}

.processing-check-input:checked~.processing-note {
    display: block;
}

.processing-note::before {
    position: absolute;
    display: block;
    top: -18px;
    left: 30px;
    content: " ";
    box-sizing: border-box;
    z-index: 2;
    border-color: transparent transparent rgb(236, 239, 241);
    border-style: solid;
    border-width: 10px;
}

.last-minutes-note {
    background-color: #eceff1;
    margin-top: 6px;
    padding: 15px;
    position: relative;
    font-size: 14px;
}

.last-minutes-note::before {
    position: absolute;
    display: block;
    top: -18px;
    left: 30px;
    content: " ";
    box-sizing: border-box;
    z-index: 2;
    border-color: transparent transparent rgb(236, 239, 241);
    border-style: solid;
    border-width: 10px;
}

.processing-check-input {
    margin-right: 8px;
}

.visa-for {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.formApply .speedup-upload,
.speedup-result {
    height: 116px;
}

.cus-bar {
    color: white;
    font-size: 28px;
}

.cus-mark {
    color: var(--secondary-color);
    font-size: 30px;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

/* New blog */
.sidebar__post {
    background-color: #f6f6f6;
    border-radius: 10px;
    display: block;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.sidebar__post-image {
    flex: 70px 0 0;
    margin-right: 20px;
}

.sidebar__post-image>img {
    border-radius: 10px;
    width: 80px;
}

.sidebar__post-content-meta {
    color: #757873;
    font-weight: 500;
}

.sidebar__category-list li a {
    background: none;
    border-radius: 10px;
    color: #757873;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    position: relative;
    transition: all .5s ease;
}

.sidebar__category-list li a:hover {
    background-color: #fff;
    color: #000000;
}

.mb-50 {
    margin-bottom: 50px
}

/* social icon */
.social-buttons {
    position: fixed;
    bottom: 80px;
    right: 10px;
    z-index: 99;
}

.social-buttons i {
    font-size: 22px !important;
}

.social-icon {
    box-sizing: border-box;
    -moz-border-radius: 138px;
    -webkit-border-radius: 138px;
    border-radius: 138px;
    border: 5px solid;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 1px;
    padding-top: 10px;
    transition: all 0.5s;
}

.social-icon:hover {
    transform: scale(1.3);
}

.social-icon.whatsapp {
    border-color: #4CAF50;
    background-color: #4CAF50;
    color: #ffffff;

}

.social-icon.whatsapp:hover {
    background-color: #ffffff;
    color: #4CAF50;

}

.social-icon.telegram {
    border-color: #20A0E1;
    background-color: #20A0E1;
    color: #ffffff;

}

.social-icon.telegram:hover {
    background-color: #ffffff;
    color: #20A0E1;

}

.social-icon.viber {
    border-color: #7D3DAF;
    background-color: #7D3DAF;
    color: #ffffff;

}

.social-icon.viber:hover {
    background-color: #ffffff;
    color: #7D3DAF;
}

.social-icon.skype {
    border-color: #01A6E3;
    background-color: #01A6E3;
    color: #ffffff;

}

.social-icon.skype:hover {
    background-color: #ffffff;
    color: #01A6E3;
}

.social-icon.zalo {
    border-color: #0573ff;
}

.contact-social {
    height: 100%;
}

.contact-social i {
    font-size: 22px !important;
}

.talk-now {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    font-size: 11px;
    cursor: pointer;
}

.dropdown-socials {
    list-style: none;
    padding: 10px;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    border-radius: .25rem;
    margin-bottom: 0;
    display: none;
    transition: ease-out 0.12s all;
    position: relative;
    transform-origin: 50% 100%;
}

.dropdown-socials li {
    margin: 10px 0;
}

.dropdown-socials::after {
    position: absolute;
    display: block;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    content: " ";
    z-index: 24;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
}

.show-action {
    display: block;
}

.remove-action {
    display: none;
}

.show .dropdown-socials {
    display: block;
}

.show .remove-action {
    display: block;
}

.show .show-action {
    display: none;
}

.social-buttons .pulsation {
    width: 99px;
    height: 99px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    position: absolute;
    left: -15px;
    bottom: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.social-buttons .pulsation:nth-of-type(2n) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.social-buttons .show .pulsation {
    -webkit-animation: none;
    animation: none;
}

@keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/* Mobile */
.mobile {
    padding: 10px;
    background: var(--main-color);
}

.mobile .click {
    cursor: pointer;
}

.mobile .boxMenuMobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    background: #fff;
    height: 100vh;
    padding: 15px;
    z-index: 100000000;
    overflow: scroll;
}

.mobile .boxMenuMobile.show {
    right: 0 !important;
}

.mobile .boxMenuMobile .menuMobile {
    background: var(--main-color);
    margin: 0;
    padding: 0;
    border-radius: 12px;
}

.mobile .boxMenuMobile .menuMobile li {
    list-style: none;
}

.label-mobile-logout,
.mobile .boxMenuMobile .menuMobile li a {
    color: #fff;
    opacity: 0.5;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    padding: 10px 12px 10px 12px;
    position: relative;
}

.mobile .boxMenuMobile .menuMobile li a:active {
    padding-left: 17px !important;
    opacity: 1;
}

.mobile .boxMenuMobile .menuMobile li .subMenu {
    padding: 0;
    background: var(--main-color);
    display: none;
}

.mobile .boxMenuMobile .menuMobile li a i {
    position: absolute;
    right: 40px;
    top: 15px;
    font-size: 25px;
}

.mobile .boxMenuMobile .menuMobile li a.active,
.mobile .boxMenuMobile .menuMobile li .subMenu.active li a {
    padding-left: 17px !important;
    opacity: 1 !important;
}

.mobile .boxMenuMobile .boxAccount {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.mobile .boxMenuMobile .account {
    color: #fff;
}

.mobile .boxMenuMobile .lan-cur {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.lan-cur .lan-cur-title {
    color: var(--secondary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.btn-language-currency {
    border: 1px solid #bbb;
}

/* Index page */
.main .btn-booking {
    font-weight: bold;
    border-radius: 40px;
    color: #fafbfd;
    text-transform: uppercase;
    padding: 25px 30px;
    transition: background .25s ease;
    background: linear-gradient(to bottom, #9dd359 0, #72b624 50%, #57a603 100%);
}

.main .btn-booking:hover {
    background: linear-gradient(to bottom, rgba(157, 211, 89, .8) 0, rgba(114, 182, 36, .8) 50%, rgba(87, 166, 3, .8) 100%);
}

.top-bg {
    background-size: cover;
    background-position: center;
    height: 400px;
}

.main .action {
    padding-top: 150px;
}

.main .steps {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(18, 51, 94, .83);
    padding: 20px 50px;
    color: white;
}

.main .steps-bottom {
    box-shadow: 0 10px 9px 0 rgba(0, 0, 0, .23);
    height: auto;
    background-color: #fff;
}

.steps-bottom .step {
    color: #a60417;
    font-size: 72px;
}

.steps-bottom .step-title {
    color: #00164d;
    font-size: 18px;
    font-weight: bold;
}

.steps-bottom .step-content {
    color: #6e768c;
    font-weight: bold;
}

.main .card-header {
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: var(--main-color);
    padding: 16px 18.5px;
}

.table-service tr:nth-last-child(2n) td:nth-child(3) {
    background-color: #bcc7db;
}

.table-service tr:nth-last-child(odd) td:nth-child(3) {
    background-color: #dce2ec;
}

.table-service tr td:not(:first-child) {
    text-align: center;
    font-size: 16px;
    color: green;
}

.notice-mobile {
    background-color: #f6f7f8;
    font-size: 12px;
}

.step-mob {
    box-shadow: 2px 3.46px 9px 0 rgba(0, 0, 0, .23);
    padding: 0 20px
}

/* Service page */
.select-box {
    display: block;
    position: relative;
}

.mobile-action {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 76%;
    border-radius: 10px;
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.03);
    z-index: 10;
}

.slt-dropdown {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 76%;
    border-radius: 10px;
    border: 1.5px solid #7f7f7f;
    background: #fff;
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.03);
    z-index: 10;
}

.slt-group {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7f7f7f;
}

.slt-dropdown.active .fa-chevron-up {
    display: block;
}

.slt-dropdown.active .fa-chevron-down {
    display: none;
}

.slt-dropdown .fa-chevron-up {
    display: none;
}

.slt-dropdown .fa-chevron-down {
    display: block;
}

.slt-dropdown.active .slt-item {
    display: block;
}

.slt-dropdown .slt-item {
    display: none;
    list-style: none;
    padding: 0;
    margin-bottom: 7px;
}

.slt-item li {
    padding: 7px 15px;
    border-top: 0.5px solid #dcdcdc;
}

.slt-item li a {
    color: rgba(84, 84, 84, 1);
}

.slt-item li:first-child {
    border-top: 0.75px solid #545454;
}

.btn-apply {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #ffffff;
    background: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    padding: 10px;
}

.top-title {
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
    color: white;
}

.addon-service-group {
    padding: 15px;
    border: 1px solid var(--main-color);
    margin-bottom: 10px;
    border-radius: 10px;
}
