@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* Common styles */
* {
    font-family: 'Lato', sans-serif;
}
body {
    letter-spacing: 1px;
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
:root {
    --white: #ffffff;
    --medium_dark: #b2b2b2;
    --black: #000000;
    --semi_black: #3e3e3e;
    --red: #EE3825;
    --blue_green: #20a397;
    --green: #4caf50;
    --gray: #505050;
    --dark-gray: #3e3e3e;
}
.wrapper {
    display: flex;
    position: relative;
}
.wrapper .content {
    width: 100%;
}
.form-control {
    border: 1px solid #ced4da!important;
    border-radius: 0px;
    font-size: 14px!important;
    padding: .5rem .75rem;
}
.form-select {
    padding: .6rem .75rem;
    font-size: 14px!important;
}
.form-file {
    padding: .6rem .75rem!important;
}
.asterisk {
    color: red;
}
.notification-box {
    width: 40%;
    margin: auto;
    margin-top: 1%;
}
.notification-box .alert {
    border-radius: 0;
    margin-bottom: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display, .select2-container--default .select2-selection--single {
    font-size: 13px;
}
.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
    border: 1px solid #ced4da!important;
    border-radius: 0px!important;
    padding: 0.5rem 0.75rem!important;
    height: 42px;
}
.select2-container--open .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da!important;
    border-radius: 0px;
    padding: 0.5rem 0.75rem;
}
.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0px;
    margin-left: 0px;
    position: relative;
    top: -3px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 0px;
    margin-top: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
}
/* Common styles */



/* Navbar styles */
.nav {
    border-bottom: 1px solid var(--medium_dark);
}
.nav .collapse-icon {
    height: 30px;
}
.nav .main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav .main-logo .logo {
    margin-right: 13px;
    width: 50px;
    height: 50px;
}
.nav .main-logo .logo-text {
    font-size: 35px;
    color: var(--blue_green);
    font-weight: 900;
}
.profile-button {
    font-size: 14px;
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    padding: 7px 15px;
    border-radius: 8px;
}
.sidebar-collapse {
    margin-right: 18px;
}
.dropdown-link {
    display: block;
    font-size: 14px;
    padding: 5px 15px;
}
/* Navbar styles */



/* Footer styles */
.footer{
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer .copyright {
    font-size: 14px;
    font-weight: 500px;
}
/* Footer styles */



/* Sidebar styles */
.wrapper .sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 83vh;
    overflow-y: scroll;
    transition: all 0.5s;
    margin-left: -250px;
}
.wrapper .sidebar.active {
    margin-left: 0;
    transition: all 0.5s;
}
.wrapper .sidebar .components {
    border-bottom: 1px solid rgb(80, 80, 80, 0.1);
    border-right: 1px solid rgb(80, 80, 80, 0.1);
    list-style: none;
    padding: 15px 15px 5px 15px;
}
.wrapper .sidebar .components .heading {
    font-size: 15px;
    color: var(--blue_green);
    padding-bottom: 5px;
    font-weight: 800;
}
.wrapper .sidebar .components li {
    padding-bottom: 8px;
    padding-left: 10px;
}
.wrapper .sidebar .components .link {
    font-size: 13px;
    color: var(--gray);
    font-weight: 800;
}
.wrapper .sidebar .components .link.active {
    color: var(--red);
}
.wrapper .sidebar .components .link i {
    padding-right: 10px;
}
.wrapper .sidebar .components .link:hover {
    color: var(--green);
    font-weight: 800;
}
.wrapper .sidebar::-webkit-scrollbar {
    width: 4px;
}
.wrapper .sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.wrapper .sidebar::-webkit-scrollbar-thumb {
    background: var(--blue_green);
}
.wrapper .sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}
/* Sidebar styles */



/* Dashboard styles */
.dashboard-container {
    padding: 0 2%;
}
.dashboard .card {
    border: 0;
}
.dashboard .card-header {
    padding: 20px;
    border-color: transparent;
}
.dashboard .card-header .table-title {
    color: var(--green);
    font-size: 18px;
    font-weight: 800;
}
.dashboard .card-header .table-title i {
    margin-right: 10px;
}
.dashboard .card-body .row {
    -webkit-box-shadow: 0px 0px 8px -5px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 8px -5px rgb(0 0 0 / 70%);
    box-shadow: 0px 0px 8px -5px rgb(0 0 0 / 70%);
    margin-bottom: 50px;
    padding: 25px;
}
.dashboard .single-data {
    width: 19%;
    height: 125px;
    text-align: center;
    border: 1px solid #dbdbdb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dashboard .dashboard-title {
    font-size: 22px;
    color: var(--red);
    font-weight: 800;
    line-height: 25px;
}
.dashboard .dashboard-number {
    font-size: 35px;
    color: var(--green);
    /* line-height: 35px; */
}
/* Dashboard styles */



/* Table styles */
.table-container {
    padding: 1% 2%;
}
.table-container .card {
    border-radius: 0;
}
.table-container .table-title {
    color: var(--green);
    font-size: 18px;
    font-weight: 800;
}
.table-container .table-title i {
    padding-right: 5px;
}
.table-container .filter-form {
    width: 875px;
}
.table-container .search-reset{
    display: flex;
    justify-content: space-between;
}
.table-container .filter-form .search-btn {
    font-size: 12px;
    color: var(--white);
    background-color: var(--blue_green);
    width: 120px;
    height: 40px;
    margin-right: 15px;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s;
}
.table-container .filter-form .reset-btn {
    font-size: 12px;
    color: var(--white);
    background-color: var(--red);
    width: 120px;
    height: 40px;
    /* margin-right: 15px; */
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-container .create-btn {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--blue_green);
    padding: 10px 20px;
    transition: all 0.5s;
}
.table-container .create-btn:hover {
    background-color: var(--green);
    transition: all 0.5s;
}
.table-container .table tr th {
    font-size: 15px;
    color: var(--blue_green);
    text-align: center;
    font-weight: 800;
}
.table-container .table tr th:last-child {
    width: 15%;
}
.table-container .table tr td {
    font-size: 13px;
    color: var(--gray);
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: middle;
    /* text-align: center; */
}
.table-container .table tr td:last-child {
    text-align: center;
}
.table-container div.dataTables_wrapper div.dataTables_info {
    font-size: 13px;
    padding-top: 0;
}
.table-container .dataTables_wrapper .row:nth-child(1) {
    margin-bottom: 10px;
}
.table-container .dataTables_length label, .table-container .dataTables_filter label {
    font-size: 13px;
}
.table-container .dataTables_wrapper .row:nth-child(3) {
    margin-top: 10px;
    align-items: center;
}
.table-container .dataTables_wrapper .paginate_button a {
    font-size: 12px;
}
.table-container div.dataTables_wrapper div.dataTables_length select {
    width: 75px;
    padding: 5px 15px;
}
.table-container .view, .table-container .edit, .table-container .delete {
    font-size: 15px;
    border-radius: 0;
}
.table-container .bi-circle-fill {
    margin-right: 5px;
}
.table-container .bi-star-fill {
    color: gold;
}
.table-container .table-image {
    height: 120px;
    object-fit: cover;
    width: 100%;
}
.table-container .table-icon {
    height: 100px;
    object-fit: cover;
    width: 50%;
    margin: auto;
}
/* Table styles */


/* Delete modal */
.delete-modal .modal-title {
    color: var(--red);
    font-weight: 800;
    font-size: 20px;
}
.delete-modal .modal-message {
    color: var(--semi_black);
    font-size: 18px;
    text-align: center;
}
.delete-modal .delete-modal-btn.delete-btn {
    background-color: var(--red);
    color: var(--white);
    border-radius: 0;
    transition: all 0.5s;
}
.delete-modal .delete-modal-btn.close-btn {
    background-color: var(--gray);
    color: var(--white);
    border-radius: 0;
    transition: all 0.5s;
}
.delete-modal .delete-modal-btn.delete-btn:hover, .delete-modal .delete-modal-btn.close-btn:hover {
    background-color: var(--blue_green);
    transition: all 0.5s;
}
/* Delete modal */



/* Edit styles */
.edit-container {
    padding: 1% 25%;
}
.edit-container .card {
    border-radius: 0;
}
.edit-container .card-body {
    padding: 5% 10%;
}
.edit-container .card .single-form-input {
    margin-bottom: 15px;
}
.edit-container .form-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 3px;
}
.edit-container .buttons {
    text-align: center;
    margin-top: 5%;
}
.edit-container .form-btn {
    font-size: 15px;
    width: 120px;
    margin: 0 15px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 0;
    transition: all 0.5s;
}
.edit-container .form-back-btn {
    font-size: 15px;
    width: 120px;
    margin: 0 15px;
    background-color: var(--gray);
    color: var(--white);
    border-radius: 0;
    transition: all 0.5s;
}
.edit-container .form-btn:hover, .edit-container .form-back-btn:hover {
    background-color: var(--blue_green);
    transition: all 0.5s;
}
.edit-container .decorate-image {
    margin-top: 5%;
}
.edit-container .decorate-image .image {
    margin: auto;
    height: 400px;
}
.edit-container .editor {
    height: 200px;
}
.edit-container .create-point {
    color: var(--white);
    border-radius: 0;
    transition: all 0.3s;
    width: 120px;
    font-size: 12px;
    padding: 4px 0;
    background-color: var(--blue_green);
    font-weight: 600;
}
.edit-container .create-point:hover {
    background-color: var(--red);
    transition: all 0.3s;
}
.edit-container .delete-point {
    font-size: 15px;
    background-color: var(--red);
    color: var(--white);
    border-radius: 0;
    transition: all 0.3s;
}
.edit-container .delete-point:hover {
    background-color: var(--black);
    transition: all 0.3s;
}
.edit-container .form-image {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.edit-container .form-multiple-image {
    width: 100%;
    height: 125px;
    object-fit: cover;
}
.edit-container .alert.alert-danger {
    border-radius: 0;
    margin-top: 5px;
    padding: 5px 15px;
    margin-bottom: 0;
}
.edit-container .swiper {
    width: 660px;
}
.edit-container .swiper .image-title {
    position: absolute;
    bottom: 0%;
    color: white;
    background: rgba(0,0,0,.7);
    width: 100%;
    text-align: center;
    padding: 2% 0;
}
.edit-container .itinerary-text {
    font-size: 15px!important;
    margin-bottom: 10px;
}
/* Edit styles */



/* Login page styles */
.guest {
    background-image: url('../storage/background.jpg');
    background-size: contain;
    background-size: 100% 100%;
    display: block;
}
.guest .form-div {
    border-radius: 0;
    border: 1px solid #939393;
}
.guest .form-div .title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.guest .form-div input {
    background: transparent;
    height: 48px;
    border-left: none!important;
}
.guest .form-div input:focus {
    outline: none!important;
    border: 1px solid #939393;
}
.guest .form-div .input-group-text {
    border-radius: 0;
    border-right: 0;
    padding: 0.375rem 1rem;
    background: transparent;
}
.guest .form-div .submit-button {
    width: 100%;
    padding: 12px 25px;
    background-color: #fe5246;
    border: 0;
    color: #fff;
    transition: all 0.3s;
}
.guest .form-div .submit-button:hover {
    background-color: #dd453a;
    transition: all 0.3s;
}
.guest .form-div .new-here {
    font-size: 14px;
}
.guest .form-div .new-here a {
    color: #2196f3;
    font-weight: 700;
}
/* Login page styles */


/* .upload-modal .single-form-input #file {
    padding: 5px;
}

.card-body .container {  
    display: grid;  
    grid-gap: 5px;  
    grid-template-columns: repeat(auto-fit, 200px);
    grid-template-rows: repeat(2, 100px);  
} */


/* Responsive */
@media screen and (max-width: 1920px) {
}

@media screen and (max-width: 1900px) {
}

@media screen and (max-width: 1850px) {
}

@media screen and (max-width: 1800px) {
}

@media screen and (max-width: 1750px) {
}

@media screen and (max-width: 1680px) {
}

@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1536px) {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
    .dashboard-container {
        max-width: 1000px;
    }

    .wrapper .sidebar {
        min-width: 250px;
        max-width: 250px;
        height: 89vh;
    }


    .dashboard .dashboard-title {
        font-size: 15px;
        padding-bottom: 5px;
    }

    .wrapper .sidebar .components .link {
        font-size: 11px;
    }

    .wrapper .sidebar .components .heading {
        font-size: 14px;
        padding-bottom: 5px;
    }

    .dashboard .card-header {
        padding: 10px;
    }

    .dashboard .table-title {
        font-size: 16px;
    }

    .dashboard .dashboard-number {
        font-size: 28px;
    }

    .dashboard .single-data {
        height: 110px;
    }

    .dashboard .date-search .search-btn,
    .dashboard .date-search .reset-btn {
        font-size: 13px;
    }

    .form-control {
        font-size: 13px !important;
    }

    .table-container {
        width: 95%;
    }

    .table-container .table-title {
        font-size: 16px;
    }

    .table-container .create-btn {
        font-size: 10px;
        width: 100px;
        height: 35px;
    }

    .table-container .upload-btn{
        font-size: 10px;
        width: 100px;
        height: 35px;
        margin-left: 20px;
    }

    .table-container .table tr th {
        font-size: 14px;
    }

    .table-container .table tr td {
        font-size: 13px;
    }

    .footer .copyright {
        font-size: 12px;
    }
}

@media screen and (max-width: 1360px) {
    .dashboard .dashboard-title {
        font-size: 15px;
        color: #757575;
        width: 200px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1280px) {
    .dashboard-container {
        max-width: 950px;
    }

    .dashboard .card-body .row {
        margin-bottom: 30px;
        padding: 15px;
        border-radius: 10px;
    }

    .table td,
    .table th {
        padding: 0.6rem 0.3rem !important;
    }

    .table-container div.dataTables_wrapper div.dataTables_info,
    .table-container .dataTables_length label,
    .table-container .dataTables_filter label,
    .table-container .dataTables_wrapper .paginate_button a,
    .table-container .edit,
    .table-container .destroy {
        font-size: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .dashboard-container {
        max-width: 750px;
    }

    .dashboard .single-data {
        width: 31%;
        height: 90px;
        margin: 5px;
    }

    .dashboard .card-body .row {
        padding: 10px;
        justify-content: center !important;
    }
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 844px) {
    .wrapper .sidebar {
        min-width: 250px;
        max-width: 250px;
        height: 89vh;
    }

    .sidebar-collapse {
        width: 30px;
        height: 25px;
    }
    
    .edit-container{
        width: 500px;
    }

    .edit-container input {
        width: 200px;
    }

    .edit-container .form-back-btn {
        margin-bottom: 20px;
    }
    
    .menu{
        margin-left: 0px;
    }

    .menu-row{
        margin-right: -30px;
    }

    .name-col{
        margin-left: 0px;
        width: 20px !important;
    }

    .menus .single-menu{
        margin-right: -40px;
    }

    .menus .single-menu .col-3{
        display: flex;
        gap: 30px;
        margin-right: 80px;
    }
    
    .search-btn{
        width: 100px !important;
        font-size: 12px !important;
    }

    .reset-btn{
        justify-content: center;
        width: 100px !important;
        font-size: 12px !important;
        margin: auto;
    }

    .search-reset{
        display: block;
        text-align: center;
    }

    .scrollit {
        overflow:scroll;
    }

    .table-container .table tr th {
        font-size: 10px;
    }
    
    .table-container .table tr td {
        font-size: 9px;
    
    }

    .dashboard .dashboard-title {
        font-size: 14px;
        color: #757575;
    }
    
    
    .dashboard .dashboard-image {
        width: 30px;
        height: 30px;
        margin-left: 60px;
    }

    .dashboard .single-data {
        height: 100px;
        margin: 5px;
    }

    .dashboard .card-header {
        padding: 20px;
        height: 70px;
    }
    
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 650px) {

    .dashboard .dashboard-title {
        font-size: 12px;
        color: #757575;
        width: 200px;
    }

    .dashboard .single-data{
        padding: 10px;
    }
}

@media screen and (max-width: 428px) {

    .date-search .row input{
       width: 100px;
    }
}

@media screen and (max-width: 478px) {
    
    body{
        margin-right: -5px !important;
    }

    .card{
        margin: 10px;
    }

    .card-body .table{
        width: 250% !important;
    }

    
    .dashboard-container {
        max-width: 300px;
        margin: auto;
        padding: auto;
    }

    .dashboard .single-data {
        padding-top: 20px;
        padding-left: 20px;
    }

    .dashboard .dashboard-title {
        font-size: 8px;
        color: #757575;
        width: 200px;
    }

    .dashboard .card-header {
        padding: 14px;
        height: 40px;
        margin-bottom: -10px;
    }
    
    .dashboard .dashboard-number {
        font-size: 16px;
    }
    
    .dashboard .dashboard-image {
        width: 20px;
        height: 20px;
        margin-left: 60px;
    }

    .dashboard-container {
        max-width: 500px;
    }

    .dashboard .single-data {
        width: 42%;
        height: 60px;
        margin: 5px;
    }

    .dashboard .card-body .row {
        padding: 10px;
        justify-content: center !important;
    }

    .nav .main-logo .logo-text {
        font-size: 15px;
    }
    .edit-container{
        width: 300px;
    }

    .edit-container input {
        width: 100px;
    }

    .card{
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .card .card-header .table-title {
        font-size: 12px;
    }

    .edit-container .form-btn {
        font-size: 12px;
        width: 195px;
        font-weight: 600;
    }
    
    .edit-container .form-back-btn {
        font-size: 12px;
        width: 195px;
        font-weight: 600;
    }

    
    .scrollit {
        overflow:scroll;
    }

    .table-container .edit,
    .table-container .destroy {
        margin-bottom: 10px;
    }

    .wrapper .sidebar .components .heading {
        font-size: 11px;
    }
    
    .wrapper .sidebar .components li {
        padding-bottom: 8px;
        padding-left: 10px;
    }
    
    .wrapper .sidebar .components .link {
        font-size: 10px;
    }

    .card .card-header {
        display: block;
    }

    .filter-form .col{
        font-size: 10px;
    }

    .table-container .filter-form .search-btn {
        font-size: 10px !important;
        width: 100px;
        height: 30px;
    }
    
    .table-container .filter-form .reset-btn {
        width: 100px;
        height: 30px;
    }

    .table-container .filter-form .reset-btn a{
        font-size: 10px !important;
    }

    .form-control {
        font-size: 10px !important;
    }

    .nav .main-logo .logo {
        margin-right: 10px;
        margin-left: -5px;
        display: inline-block;
        width: 40px;
        height: 40px;
    }

    .menu-logo{
        width: 20px;
        height: 20px;
    }

    .search-btn ,
    .reset-btn{
        font-size: 10px !important;
        width: 100px !important;
        height: 30px !important;
    }

    .date-search .row input{
        width: 200px;
        margin: auto;
        justify-content: center;
        margin-bottom: 10px;
    }


    .card .card-body .table-title {
        font-size: 12px;
    }

    .card-body input{
        font-size: 10px;
        height: 30px;
    }

    .table-container .table tr th {
        font-size: 10px !important;
    }

    .search-btn{
        margin: auto;
    }

    .menu-row{
        margin-right: -30px;
        font-size: 12px;
    }

    .edit-container .create-point {
        margin-left: -40px !important;
        font-size: 8px;
        width: 100px;
    }
    .name-col{
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .menus .single-menu{
        margin-right: -40px;
    }

    .menus .single-menu .col-3{
        display: flex;
        gap: 10px;
        margin-right: 80px;
    }

    .edit-container input {
        width: 250px !important;
    }
    
    .menus .delete-point{
        margin-right: -100px;
    }

    .select2-container--default .select2-selection--single {
        font-size: 10px !important;
    }

    .edit-container .form-btn {
        font-size: 10px;
    }
    .edit-container .form-back-btn {
        font-size: 10px;
    }
    
}

@media screen and (max-width: 395px) {
}

@media screen and (max-width: 376px) {
}

@media screen and (max-width: 360px) {
}

@media screen and (max-width: 320px) {
}
/* Responsive */