/* Button Close */
.btn-close {
    box-sizing          : content-box;
    width               : 1em;
    height              : 1em;
    padding             : 0.25em;
    color               : #000;
    background-color    : transparent;
    background-image    : url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    background-repeat   : no-repeat;
    background-position : center;
    background-size     : 1em auto;
    border              : none;
    border-radius       : 0.375rem;
    opacity             : 0.5;
    cursor              : pointer;
    transition          : opacity 0.15s ease-in-out;
}

.btn-close:hover {
    opacity : 0.75;
}

.btn-close:focus {
    outline    : none;
    box-shadow : 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    opacity    : 1;
}

.btn-close:disabled,
.btn-close.disabled {
    pointer-events : none;
    opacity        : 0.25;
}

/* Dropdown */
.dropdown {
    position : relative;
}

.dropdown-toggle::after {
    display        : inline-block;
    margin-left    : .255em;
    vertical-align : .255em;
    content        : "";
    border-top     : .3em solid;
    border-right   : .3em solid transparent;
    border-bottom  : 0;
    border-left    : .3em solid transparent;
}

.dropdown-menu {
    position         : absolute;
    z-index          : 1000;
    display          : none;
    width            : auto !important;
    min-width        : 10rem;
    padding          : 0.5rem 0;
    margin           : 0;
    font-size        : 1rem;
    color            : #212529;
    text-align       : left;
    list-style       : none;
    background-color : #fff;
    background-clip  : padding-box;
    border           : 1px solid rgba(0, 0, 0, .15);
    border-radius    : 0.375rem;
    box-shadow       : 0 0.5rem 1rem rgba(0, 0, 0, .175);
}

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

.dropdown-menu .form-control {
    padding : 10px;
}

.dropdown-item {
    display          : flex;
    justify-content  : space-between;
    align-items      : center;
    gap              : 15px;
    width            : 100%;
    padding          : 0.25rem 1rem;
    clear            : both;
    white-space      : nowrap;
    background-color : transparent;
    border           : 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color            : #1e2125;
    background-color : #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
    color            : #fff;
    text-decoration  : none;
    background-color : #0d6efd;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color            : #6c757d;
    pointer-events   : none;
    background-color : transparent;
}

.dropdown-header {
    display       : block;
    padding       : 0.5rem 1rem;
    margin-bottom : 0;
    font-size     : .875rem;
    color         : #6c757d;
    white-space   : nowrap;
}

.dropdown-divider {
    height     : 0;
    margin     : 0.5rem 0;
    overflow   : hidden;
    border-top : 1px solid rgba(0, 0, 0, .15);
}

.dropup .dropdown-menu {
    top           : auto;
    bottom        : 100%;
    margin-top    : 0;
    margin-bottom : 0.125rem;
}

.dropend .dropdown-menu {
    top         : 0;
    right       : auto;
    left        : 100%;
    margin-left : 0.125rem;
}

.dropstart .dropdown-menu {
    top          : 0;
    right        : 100%;
    left         : auto;
    margin-right : 0.125rem;
}

/* Chips container */
.chips-container {
    display     : flex;
    flex-wrap   : wrap;
    gap         : 5px;
    min-height  : 38px;
    align-items : center;
    position    : relative;
}

.chips-container .clear-all {
    display : none;
}

.chips-container .chips {
    border-radius    : 22px;
    padding          : .2rem .3rem .2rem .8rem;
    background-color : var(--primary-500);
    color            : #FFF;
    display          : inline-flex;
    align-items      : center;
    font-size        : 12px;
}

.chips-container .chips .delete-chips {
    color            : #000;
    background-color : #FFF;
    border-radius    : 50%;
    cursor           : pointer;
    width            : 20px;
    height           : 20px;
    line-height      : 20px;
    text-align       : center;
}

.chips-container .clear-all {
    cursor     : pointer;
    position   : absolute;
    right      : 12px;
    top        : 8px;
    width      : 20px;
    height     : 20px;
    color      : var(--secondary-500);
    text-align : center;
    z-index    : 6;
}

.clear-input:hover {
    opacity : 1;
}

.field-textarea .clear-input {
    top : 10px;
}

.clear-input {
    color            : #fff;
    background-color : #000;
    border-radius    : 50%;
    cursor           : pointer;
    width            : 20px;
    height           : 20px;
    line-height      : 20px;
    text-align       : center;
    position         : absolute;
    top              : calc(50% - 10px);
    right            : 12px;
    opacity          : 0.3;
}

/* Modal */
.modal {
    position   : fixed;
    top        : 0;
    left       : 0;
    z-index    : 1055;
    display    : none;
    width      : 100%;
    height     : 100%;
    overflow-x : hidden;
    overflow-y : auto;
    outline    : 0;
}

.modal-dialog {
    position       : relative;
    width          : auto;
    margin         : 0.5rem;
    pointer-events : none;
}

.modal.fade .modal-dialog {
    transform  : translateY(-50px);
    transition : transform .3s ease-out;
}

@media (prefers-reduced-motion : reduce) {
    .modal.fade .modal-dialog {
        transition : none;
    }
}

.modal.show .modal-dialog {
    transform : none;
}

.modal.modal-static .modal-dialog {
    transform : scale(1.02);
}

.modal-dialog-scrollable {
    height : calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height : 100%;
    overflow   : hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y : auto;
}

.modal-dialog-centered {
    display     : flex;
    align-items : center;
    min-height  : calc(100% - 1rem);
}

.modal-content {
    position         : relative;
    display          : flex;
    flex-direction   : column;
    width            : 100%;
    color            : #212529;
    pointer-events   : auto;
    background-color : #fff;
    background-clip  : padding-box;
    border           : 1px solid rgba(0, 0, 0, .175);
    border-radius    : 0.5rem;
    outline          : 0;
}

.modal-backdrop {
    position         : fixed;
    top              : 0;
    left             : 0;
    z-index          : 1050;
    width            : 100vw;
    height           : 100vh;
    background-color : #000;
}

.modal-backdrop.fade {
    opacity : 0;
}

.modal-backdrop.show {
    opacity : 0.5;
}

.modal-header {
    display                 : flex;
    flex-shrink             : 0;
    align-items             : center;
    padding                 : 1rem;
    border-bottom           : 1px solid #dee2e6;
    border-top-left-radius  : calc(0.5rem - 1px);
    border-top-right-radius : calc(0.5rem - 1px);
}

.modal-header .btn-close {
    padding       : 0.5rem;
    margin-top    : -0.5rem;
    margin-right  : -0.5rem;
    margin-bottom : -0.5rem;
    margin-left   : auto;
}

.modal-title {
    margin-bottom : 0;
    line-height   : 1.5;
}

.modal-body {
    position : relative;
    flex     : 1 1 auto;
    padding  : 1rem;
}

.modal-footer {
    display                    : flex;
    flex-shrink                : 0;
    flex-wrap                  : wrap;
    align-items                : center;
    justify-content            : flex-end;
    padding                    : calc(1rem - 0.25rem);
    background-color           : transparent;
    border-top                 : 1px solid #dee2e6;
    border-bottom-right-radius : calc(0.5rem - 1px);
    border-bottom-left-radius  : calc(0.5rem - 1px);
}

.modal-footer > * {
    margin : 0.25rem;
}

/* Sizes and responsive */

@media (min-width : 576px) {
    .modal {
        margin     : 1.75rem;
        box-shadow : 0 .5rem 1rem rgba(0, 0, 0, .15);
    }

    .modal-dialog {
        max-width    : 500px;
        margin-right : auto;
        margin-left  : auto;
    }

    .modal-sm {
        max-width : 300px;
    }
}

@media (min-width : 992px) {
    .modal-lg, .modal-xl {
        max-width : 800px;
    }
}

@media (min-width : 1200px) {
    .modal-xl {
        max-width : 1140px;
    }
}

/* Fullscreen variants */

.modal-fullscreen {
    width     : 100vw;
    max-width : none;
    height    : 100%;
    margin    : 0;
}

.modal-fullscreen .modal-content {
    height        : 100%;
    border        : 0;
    border-radius : 0;
}

.modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
    border-radius : 0;
}

.modal-fullscreen .modal-body {
    overflow-y : auto;
}

/* Responsive fullscreen */

@media (max-width : 575.98px) {
    .modal-fullscreen-sm-down {
        width     : 100vw;
        max-width : none;
        height    : 100%;
        margin    : 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height        : 100%;
        border        : 0;
        border-radius : 0;
    }

    .modal-fullscreen-sm-down .modal-header,
    .modal-fullscreen-sm-down .modal-footer {
        border-radius : 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y : auto;
    }
}

@media (max-width : 767.98px) {
    .modal-fullscreen-md-down {
        width     : 100vw;
        max-width : none;
        height    : 100%;
        margin    : 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height        : 100%;
        border        : 0;
        border-radius : 0;
    }

    .modal-fullscreen-md-down .modal-header,
    .modal-fullscreen-md-down .modal-footer {
        border-radius : 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y : auto;
    }
}

@media (max-width : 991.98px) {
    .modal-fullscreen-lg-down {
        width     : 100vw;
        max-width : none;
        height    : 100%;
        margin    : 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height        : 100%;
        border        : 0;
        border-radius : 0;
    }

    .modal-fullscreen-lg-down .modal-header,
    .modal-fullscreen-lg-down .modal-footer {
        border-radius : 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y : auto;
    }
}

@media (max-width : 1199.98px) {
    .modal-fullscreen-xl-down {
        width     : 100vw;
        max-width : none;
        height    : 100%;
        margin    : 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height        : 100%;
        border        : 0;
        border-radius : 0;
    }

    .modal-fullscreen-xl-down .modal-header,
    .modal-fullscreen-xl-down .modal-footer {
        border-radius : 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y : auto;
    }
}

@media (max-width : 1399.98px) {
    .modal-fullscreen-xxl-down {
        width     : 100vw;
        max-width : none;
        height    : 100%;
        margin    : 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height        : 100%;
        border        : 0;
        border-radius : 0;
    }

    .modal-fullscreen-xxl-down .modal-header,
    .modal-fullscreen-xxl-down .modal-footer {
        border-radius : 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y : auto;
    }
}

/* Gallery slide */
.gallery-slide {
    position : relative;
}

.gallery-slide .nav-btn {
    position   : absolute;
    top        : 0;
    left       : 0;
    z-index    : 2;
    background : rgba(255, 255, 255, 0.5);
    padding    : 5px 10px;
    bottom     : 0;
    transition : background-color 0.3s;
}

.gallery-slide .nav-btn svg {
    transform : rotate(90deg);
    font-size : 24px;
}

.gallery-slide .nav-btn.next svg {
    transform : rotate(-90deg);
    font-size : 24px;
}

.gallery-slide .nav-btn.next {
    left  : auto;
    right : 0;
}

.gallery-slide .nav-btn:hover {
    background : rgba(255, 255, 255, 0.8);
}

/* Custom css */

.best-place-card > div > img {
    -o-object-fit : cover;
    object-fit    : cover
}

.blog-card {
    align-items : flex-start
}

.description-content {
    all         : revert-layer;
    font        : revert;
    color       : revert;
    line-height : revert
}

.description-content * {
    all : revert-layer
}

.project-galleries img {
    height     : 140px;
    object-fit : cover;
}

.gallery-modal img {
    width : 100%;
}

.position-relative {
    position : relative;
}