* {
    font-family: "Dosis", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
 

body {
    background-color: #fff !important;
    height: 100vh;
}

body button {
    cursor: pointer;
}

.no-notif{
    cursor: pointer; font-weight: 700;
}

.notif{
    cursor: pointer;
    /* background-color: #B31312 !important; */
    color: #fff;
    font-weight: 900;
    animation: notificationAlert 1.6s infinite;
}


@keyframes iconUpDown {

    0%,
    100% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes notificationAlert{
    0%,
    100% {
        background-color: #B31312;
    }

    50% {
        background-color: transparent;
    }
}

.w-125 {
    width: 125px !important;
}

.w-250 {
    width: 255px !important;
}

.w-200 {
    width: 200px !important;
}

.w-300 {
    width: 300px !important;
}

.w-40 {
    width: 40% !important;
}

.w-25 {
    width: 25% !important;
}

.p-05{
    padding: 0.15rem !important;
}

/* İnce yazı tipi */
.font-thin {
    font-weight: 300 !important;
}

/* Hafif ince yazı tipi */
.font-light {
    font-weight: 400 !important;
}

/* Orta kalınlıkta yazı tipi */
.font-medium {
    font-weight: 500 !important;
}

/* Kalın yazı tipi */
.font-bold {
    font-weight: 600 !important;
}

/* Çok kalın yazı tipi */
.font-extra-bold {
    font-weight: 800;
}

.bg-green {
    background-color: #56c256 !important;
    color: #fefefe !important;
}

.bg-dark-blue {
    background-color: #232f40 !important;
    color: #fff !important;
}

.bg-light-brown {
    background-color: #FFFBDA !important;
}

.bg-blue {
    background-color: #4297da !important;
    color: #fefefe !important;
}

.bg-yellow {
    background-color: #FCC737 !important;
    color: #fefefe !important;
}

.bg-red {
    background-color: #B31312 !important;
    color: #fefefe !important;
}

.calendarhead {
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 2px solid #e3ebf4;
    cursor: pointer;
    background: #e3ebf4;
}

.fs-11 {
    font-size: 11px !important;
}

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

.fs-14 {
    font-size: 14px !important;
}

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

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.w-90px {
    width: 90px !important;
}

@keyframes color-change {
    0% {
        background-color: #b5f4b5;
    }

    50% {
        background-color: transparent;
    }

    100% {
        background-color: #b5f4b5;
    }
}

@keyframes bg-change-danger {
    0% {
        background-color: rgb(253, 96, 96);
    }

    50% {
        background-color: transparent;
    }

    100% {
        background-color: rgb(253, 96, 96);
    }
}

@keyframes color-change-danger {
    0% {
        color: red;
    }

    50% {
        color: transparent;
    }

    100% {
        color: red;
    }
}

.calendarInput {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid #fff;
    background: #ffffff;
    padding: 6px 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#divdatePicker {
    position: absolute;
    width: 300px;
    height: 170px;
    background-color: white;
    z-index: 9898;
    top: 217.408px;
    left: 172.833px;
    display: none;
}

/*Seat CSS*/
.calendarAndtourInfo {
    position: relative;
    background-color: white;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 5px;
    font-family: Lato, Arial;
    display: table;
    /*margin:0px auto;*/
    /*-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.75);*/
}

.calendar {
    position: relative;
    display: table;
    float: left;
    border-radius: 5px;

}

.calendarHeader {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: transparent;
    height: 30px !important;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0 25px;
}

.calendarMonth {
    position: relative;
    width: 100%;
    float: left;
    display: table;
    height: 4px;
    line-height: 4px;
}

.calendarYear {
    position: relative;
    width: 100%;
    margin-left: 1%;
    float: left;
    display: table;
    height: 24px;
    line-height: 24px;
}

.calendarContent {
    position: relative;
    background-color: #fff;
    display: table;
    float: left;


}

.calendarWeek {
    position: relative;
    width: 100%;
    display: table;
    background-color: #ff7555;
    border-radius: 10px 10px 0 0;
}

.calendarWeekDayName {
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    float: left;
}

.calendarWeekRow {
    position: relative;
    width: 100%;
    display: table;
    border-left: 1px solid transparent;
}

.calendarDay {
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
    float: left;
    /*transition:ease 0.3s;*/
    cursor: pointer;
    /*border:1px solid #fff;*/
}

.activeDay,
.calendarDay:hover {
    border-radius: 30px;
    background-color: #34a03e;
    color: #fff;
}

.passDay,
.afterMonth,
.beforeMonth {
    color: #999;
}

.calendarButton a {
    font-size: 12px;
    line-height: 20px;
    color: #333;
    transition: ease 0.3s;
    margin-right: 10px;
}

.calendarButton a:hover {
    color: #ff7555;
}

.nav-menu-filter {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.account-processes a {
    color: #e10505 !important;
    background-color: #fff;
    padding: 4px 6px;
    border-radius: 50%;
    line-height: 18px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.account-processes i {
    font-size: 19px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 30px;
    line-height: 24px;
}

.select-styled {
    display: none;
}

.select-styled:after {
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 12px;
    right: 2px;
}

.select-styled:hover {
    background-color: #1e4d75;
}

.select-styled:active,
.select-styled.active {
    background-color: #1e4d75;
}

.select-styled:active:after,
.select-styled.active:after {
    top: 0px;
    border-color: transparent transparent #fff transparent;
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #1e4d75;
}

.select-options li {
    margin: 0;
    padding: 2px 0;
    text-indent: 15px;
    border-top: 1px solid #962d22;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.select-options li:hover {
    color: #ff7555;
    background: #fff;
}

.select-options li[rel="hide"] {
    display: none;
}

/*Calendar*/
.calenderMonthNav {
    position: absolute;
    top: -5px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 5px;
    background-color: transparent;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: .3s ease-in-out;
    border-radius: 25px;
}

.calenderMonthNav.monthPrev {
    left: -26px;
    height: 40px;
}

.calenderMonthNav.monthNext {
    right: -26px;
    height: 40px;
}

.calenderMonthNav:hover {
    /* background-color:#1e4d75; */
    box-shadow: rgba(8, 40, 76, 0.4) 0px 0px 0px 2px, rgba(3, 45, 92, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    transition: .3s ease-in-out;
}

.select-styled {
    font-size: 11pt;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

.select-styled:after {
    border: 4px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.calendarContent {
    width: 100%;
    border-bottom: 1px solid #333;
}

.calendarWeek {
    background-color: #333;
    border-radius: 10px 10px 0 0;
}

.calendarWeekDayName {
    width: 14.2%;
}

.calendarDay {
    width: 14.2%;
    height: 26px;
    line-height: 26px;
}

.calendarDay.toDay {
    border-radius: 30px;
    border: 1px solid;
}

.calendarDay:hover {
    background-color: #333;
}

.calendarDay.activeDay:hover {
    background-color: #337ab7;
    cursor: default;
}

.calendarDay.holiDay {
    color: #d80000;
}

.calendarDay.holiDay:hover {
    background-color: #d80000;
    color: #fff;
}

.tFDCol {
    position: relative;
    width: 30.333%;
    float: left;
    min-height: 22px;
    display: block;
    padding: 0px 1%;
    line-height: 22px;
    color: #fff;
    cursor: pointer;
    font-size: 12pt;
}

.tFDCol.tFDtoDay {
    background-color: #34a03e;
}

.tFDCol.tFDtoMorrow {
    background-color: #337ab7;
}

.tFDCol.tFDHoliday {
    background-color: #d80000;
}

.tFDCol i.fad {
    --fa-primary-color: #fff;
    --fa-primary-opacity: 1;
    --fa-secondary-color: #fff;
    --fa-secondary-opacity: .5;
}

.calendar-travel {
    position: relative;
    width: 35%;
    height: calc(100vh - 98px);
    float: left;
    background-color: #fff;
    margin-top: 5px;
    box-shadow: rgba(0, 0, 0, .12) 1px 1px 2px 0;
}

.calendarDay {
    font-size: 16px;
}

.select-styled {
    font-size: 17px;
}

.calendarWeekDayName {
    font-size: 14px;
}

.login-icon {
    font-size: 60px;
    color: #333333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 auto;
}

.login-area, .forgot-pass-area {
    max-width: 400px;
    padding: 30px 25px;
    background-color: #eaeaea;
    margin-top: 100px;
    margin-bottom: 80px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.login-header {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.login-header span {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-icon {
    font-size: 60px;
    color: #333333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 auto;
}

.login-btn {
    border-radius: 25px;
    font-weight: 400;
    padding: 7px 13px;
    background-color: #d40303;
    color: #fefefe;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: .3s ease-in-out;
}

.login-btn:hover {
    transform: scale(1.03);
    transition: .5s ease-in-out;
}

.login-icon img {
    width: 110px;
}

.clock-container {
    display: flex;
    justify-content: start;
    width: 100%;
}

.clock-container i:first-child {
    position: absolute;
    left: 12px;
    top: 7px;
    font-size: 17px;

}

.clock-container i:last-child {
    position: absolute;
    right: 9px;
    top: 17px;
    font-size: 18px;
}

.clock-container .clock-area {
    padding: 3px 35px 3px 45px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    background-color: #fff;
    max-height: 40px;
}

.reload-page {
    min-width: 80px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #73ec8b;
}

.account-processes span {
    font-weight: 600;
    color: #fff;
}

.reload-page:hover {
    transform: scale(1.03);
    transition: .3s ease;
}


.datepicker-container {
    padding: 10px;
    background-color: #232f40;
    position: relative;
}

.datepicker-container .calendarSelect {
    min-height: 35px;
}

.datepicker-container #ay {
    margin-top: 2px;
}

.datepicker-container .calendarYear {
    display: flex;
    justify-content: center;

}

.datepicker-container .calendarMonth {
    display: flex;
    justify-content: center;
}

.datepicker-container .calendarContent {
    margin-top: 24px;
    border-radius: 10px;
}

.travelFastDate .tFDtoDay {
    padding: 4px 6px;
    width: 50px;
    font-weight: 500;
    margin-top: 9px;
}

.travelFastDate .tFDtoMorrow {
    padding: 4px 6px;
    width: 45px;
    background-color: #FF5722;
    font-weight: 500;
    margin-top: 9px;
    margin-left: 5px;
}

.dp-active-events {
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    margin-left: 16px;
}

.dp-active-events font {
    margin-top: 5px;
    font-weight: 600;
    font-size: 15px;
    color: #fff !important;
}

.dp-active-events input {
    margin-left: 7px;
    margin-top: 5px;
}

.main-nav-link {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.reload-page-link {
    border: 0;
    background-color: transparent;
    cursor: pointer;
    transition: .3s ease-in-out;
}


.reload-page-link:hover {
    transform: scale(1.02);
    color: green !important;
    background-color: #ECFFE6 !important;
    transition: .3s ease-in-out;
    font-weight: 800;
}

.main-nav-link:focus,
.reload-page-link:focus {
    outline: none !important;
}

.reload-page-link i {
    color: #7ED4AD;
    margin-left: 6px;
}

.options-area {
    padding-top: 25px;
}

#divMain {
    overflow: auto;
    width: 90%;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    position: fixed !important;
    background-color: #FCFAFA;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 60vh;
}

.clock-container .clock-area:first-child span {
    font-weight: 600;
    font-size: 20px;
}

.clock-container .clock-area:last-child font {
    font-weight: 600;
    font-size: 20px !important;
}

.clock-container .clock-area:first-child {
    transition: .3s ease;
}

#seatModal .modal-body {
    max-height: 90% !important;
    overflow-y: auto;
}

.tours-area {
    padding-top: 0px;
}

.clock-font {
    font-size: 17px;
}

.seat-info {
    font-weight: 400;
}

.mount-information {
    display: flex;
}

#divSessionInfo {
    margin-bottom: 10px;
}

.table {
    font-size: 14px;
}

#divMydataMessage {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(35, 47, 64, 1);
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    z-index: 10;
    height: 36px;
}

#divCompanyMessage {
    position: fixed;
    bottom: 36px;
    left: 0;
    width: 100%;
    background-color: rgba();
    background-color: rgba(35, 47, 64, 0.9);
    z-index: 10;
}

.navbar-home {
    background-color: #FFBB70;
}

@media(min-width: 1200px) {
    .navbar-home {
        position: fixed !important;
        z-index: 10;
        width: 100%;
    }

    /* #divActivityList {        
        max-height: 43vh;
    } */



    .reservation-sub-info-area {
        top: 200px !important;
        padding: 0 25px;
    }

    .sidebar-submenu ul {
        min-width: 200px;
    }

    .ad-mobile-label {
        display: none;
    }

    .sold-tickets-filter-area .col {
        padding: 0 5px;
    }

    .tours-area {
        padding-top: 0px;
    }

    .reload-page-link {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .main-container {
        margin-top: 60px !important;
    }

    #divMain{
        top: 51% !important;
    }

}

@media(max-width: 769px) {

    .main-container {
        flex-direction: column;
    }

    .notification-tab-btn{
        margin-top: 10px !important;    
    }

    .user-request-box{
        position: static !important;
        min-width: 200px !important;
        margin: 10px auto 0 auto;        
    }

    .ui-timepicker-container {
        z-index: 999999 !important;
    }

    .border-xs-bottom {
        border-bottom: 1px solid #dee2e6 !important;
    }

    .service-mobile-head {
        background-color: blanchedalmond;
    }

    .service-table-header {
        display: none !important;
    }

    .custom-service-p {
        display: flex;
        justify-content: center;
    }

    .abs-name-st {
        position: static !important;
        background-color: #232f40;
        color: #fff;
        width: 100% !important;
        text-align: center;
        left: 0;
        border-radius: 0 !important;
    }

    .update-activity-radios {
        position: static;
        display: flex;
        flex-direction: column;
    }

    .report-description-area {
        margin: 0 auto !important;
    }

    .report-col {
        display: flex;
        justify-content: space-between;
        padding: 3px 5px;
        border-bottom: 1px solid #eaeaea;
    }

    .reservation-user-options .nav-tabs {
        font-size: 14px !important;
    }

    .options-window-area {
        padding: 30px 10px !important;
    }

    #anaBolge {
        display: flex;
        flex-direction: column;
    }

    .options-window-area {
        min-height: 50vh !important;
    }

    .col-form-label {
        padding: 10px 0 !important;
        font-weight: 500;
    }

    .other-report-infos {
        flex-direction: column;
    }

    #divDatePicker {
        position: absolute;
        width: 300px;
        height: 170px;
        background-color: white;
        z-index: 9898;
        top: 205.408px !important;
        left: 43.833px !important;
    }

    .description-header {
        display: none !important;
    }

    .user-row {
        border-top: 1px solid #0d6efd !important;
    }

    .top-btn {
        height: 34px;
        font-size: 13px !important;
    }

    .user-list-top-btn {
        width: 47% !important;
        left: 68% !important;
    }

    #divMain {
        width: 98% !important;
    }

    .navbar-collapse {
        padding: 0 15px;
    }

    .navbar-nav .dropdown-menu {
        background-color: #d6d4d4;
        border-radius: 0;
    }

    .navbar-nav .show .sub-link {
        font-weight: 600;
    }

    .navbar-toggler {
        border: none !important;
    }

    .navbar-toggler:focus {
        outline: none !important;
    }

    .navbar-home {
        border-radius: 0 0 15% 15%;
    }

    .bottom-shadow {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .options-area {
        margin-top: 55px;
    }

    .sidebar-wrapper {
        display: none;
    }

    .sold-tickets-information .col,
    .sold-tickets-filter-area .col {
        display: flex;
        flex-direction: column;
        width: 50% !important;
        flex: 1 0 50% !important;
        padding: 5px;
    }

    .sold-tickets-information .col {
        border: 1px solid #eaeaea;
    }

}

@media(max-width: 992px) {
    .options-area {
        order: 1;
    }

    /* .fixed-bar{
        display: none;
    } */

    .notif i:first-child {        
        position: static !important;
    }

    .for-whom-filter{
        margin-top: 10px;
    }

    .act-list{
        margin-top: 15px;
    }

    .mainpage-container{
        margin-top: 83px !important;
    }

    .sales-div-area {       
        overflow-x: hidden;
    }

    #actUptList{
        margin-bottom: 20px;
    }

    /* .service-table-header{
        display: none !important;
    } */

    #ulFilters .col-lg {
        width: 50%;
    }

    .time-filter-handler {
        position: absolute;
        top: 10px !important;
        height: 32px;
        width: 103px;
        background-color: #232f40;
        color: #fff;
        border-radius: 10px;
        font-size: 13px;
        border: 1px solid #fff;
        left: 28%;
    }

    .submenu-ul {
        border-left: 3px solid #212529;
        border-right: 3px solid #212529;
    }

    .report-col {
        padding: 3px 0;
    }

    .select-act {
        max-width: 190px;
        margin: 0 auto;
    }

    .select-act img {
        height: 170px !important;
    }

    .mainpage-container {
        flex-direction: column-reverse !important;
    }

    .col-form-label {
        font-size: 14px !important;
    }

    .rez-area-header {
        flex-direction: column;
    }

    .rez-area-header strong {
        margin-bottom: 5px;
    }

    .rez-second-info-area span {
        margin-left: 10px;
    }

    .act-detail-btn {
        font-size: 14px;
        border: none;
        right: 0;
        background-color: #232f40;
        color: #fff;
        font-weight: 500;
        border-radius: 0 0 0 5px;
        right: 0;
        top: 15px;
        position: absolute;
        padding: 2px 9px;
    }

    .account-processes .sidebar-submenu {
        top: 38px;
        left: 0px;
    }

    .sidebar-submenu ul {
        position: static !important;
    }

    .sidebar-dropdown .sidebar-submenu {
        padding-left: 0px !important;
    }

    .sidebar-submenu ul li {
        border-radius: 0px !important;
    }

    .sidebar-dropdown {
        padding-left: 0px !important;
    }

    .user-process-container {
        width: 40% !important;
    }

    .main-filter-bar {
        height: 80px;
    }

    .main-filter-bar {
        padding: 0px 6px !important;
    }

    .clock-container .clock-area:first-child {
        padding: 7px 24px 7px 8px;
        height: 40px;
    }

    .mobile-dropdown-menu-handler i {
        color: #fff;
        font-size: 32px;
        position: absolute;
        top: -4px;
        left: 41%;
    }

    .clock-container .clock-area:last-child {
        padding: 7px 10px 7px 8px;
        height: 40px;
    }

    .clock-container i:first-child {
        display: none;
    }

    #divActivitySeats,
    #divActivityRez {
        padding: 0 7px;
    }

    #divActivityRez{
        overflow: hidden;
    }

    .reserve-col {
        width: 60px !important;
    }

    .user-process-container .dropdown-handler {
        border: none !important;
    }

    .user-process-container .dropdown-handler span {
        display: none;
    }

    .user-process-container .dropdown-handler i {
        position: static !important;
        font-size: 22px !important;
    }

    .nav-menu-filter {
        padding: 0 5px !important;
    }

    .account-processes {
        margin-top: 12px;
        margin-right: 8px;
    }

    .nav-menu-filter {
        border-radius: 0 0 5px 5px;
    }

    .main-menu {
        display: block;
        background-color: #212529;
        margin-top: 30px;
        border-radius: 6px;
    }

    .menu-text i:last-child {
        margin-left: auto !important;
    }

    .reload-page span {
        display: none;
    }

    .reload-page {
        height: 30px;
        margin-top: 10px;
        min-width: 35px !important;
    }

    .clock-area {
        margin-top: 5px;
    }


    #divActivitySeats {
        overflow: hidden;
    }

    .mobile-dropdown-menu-handler {
        display: block !important;
        position: absolute;
        top: 54px;
        background-color: transparent !important;
        font-size: 20px;
        width: 115px;
        border-radius: 20px;
        height: 25px;
    }

    #divActivityRez {
        margin-top: 15px;
    }

    .activity-result-header {
        display: none !important;
    }

    .activity-result div,
    .activity-manage-result div {
        padding: 5px 0;
        text-align: left !important;
        font-size: 15px;
    }

    #divActivityList {
        order: 2;
        margin: 0 auto;
    }

    .sub-tour-info {
        order: 3;
    }

    .am-table-header {
        display: none !important;
    }

    .contact-wp {
        height: 60px !important;
        width: 30px !important;
        border-radius: 10px 0 0 10px !important;
        right: 0px !important;
    }

    .contact-wp i {
        font-size: 25px !important;
    }
}

@media(max-height: 700px) {
    .reservation-seats-container {
        height: 24vh !important;
    }

    /* .seat-area-properties-container{
        overflow-y: auto !important;
    } */

    /* .sales-div-area {
        max-height: 76vh !important;
    } */

    .reservation-top-area{
        overflow-y: scroll;
    }

    .select-act img {
        height: 135px !important;
    }

    .select-act-type h5 {
        font-size: 15px !important;
    }

    #divMain {
        top: 56% !important;
        max-height: 74vh !important;
    }

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

}

@media(max-height: 900px) {
    .reservation-top-area {
        overflow-y: scroll;
    }
}

@media(max-width: 576px) {
    .options-window-area .table {
        font-size: 12px !important;
    }

    .last-rzv-btn-area span{
        display: none !important;
    }

    .last-rzv-btn-area i{
        display: block !important;
    }

    .nav-menu-filter {
        padding: 0!important;
    }
    
    .clock-container .clock-area:first-child {
        padding: 7px 19px 7px 3px;
    }
    .clock-container .clock-area {
        padding: 3px 2px 3px 2px;
    }

    .calender-bottom-btns{
        position: static !important;
        margin-top: 30px !important;
    }

    #defaultOrder{
        margin-bottom: 20px !important;
    }

    .show-note-area{        
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        width:28px !important;
    }

    .select2-container--default{
        width: 100% !important;
    }

    .select2-container--open {
        width: 93% !important;
        z-index: 9999999 !important;    
    }

    .hover-service-infos div {
        left: 6% !important;
        width: 300px !important;
        top: 48px !important;
    }

    .report-account {
        width: 80% !important;
    }

    .btn-user-detail {
        max-width: 90px;
        margin-left: 15px;
        padding: 0;
    }

    #divMain {
        top: 49% !important;
        height: 77vh !important;
        z-index: 999999;
        max-height: 100vh !important;
    }

    .user-list-top-btn {
        width: 77% !important;
        left: 40% !important;
    }

    .definition-top-btn {
        width: 83% !important;
        left: 43% !important;
    }

    .custom-activity-header {
        width: 100px !important;
        font-size: 14px !important;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .custom-activity-header i {
        display: none !important;
    }

    .mainpage-container{
        margin-top: 83px !important;
    }
}

@media(min-width: 769px) {

    .custom-static-md {
        position: static !important;     
    }

    .mobile-label {
        display: none;
    }

    .border-md-right {
        border-right: 1px solid #dee2e6 !important;
    }

    .border-md-end {
        border-right: 1px solid #dee2e6 !important;
    }

    .abs-name-st {
        position: absolute;
        top: 0px;
        background-color: #232f40;
        color: #fff;
        width: 175px !important;
        text-align: center;
        left: 0;
        border-radius: 0 0 5px 5px;
    }

    .update-activity-radios {
        display: flex;
        justify-content: space-around;
    }
}

@media(min-width: 576px) {    
    .last-rzv-btn-area span{
        display: block;
    }

    .last-rzv-btn-area i{
        display: none;
    }

    .modal-dialog {
        max-width: 95% !important;
        margin: 1.75rem auto;
    }

    .home-btn{
        display: none !important;
    }

    .custom-activity-header {
        width: 110px !important;
        font-size: 17px !important;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    /* .select2-container--default {
        width: 100% !important;
    } */
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center !important;
    }

    .time-filter-handler {
        position: absolute;
        top: 11px;
        height: 32px;
        width: 103px;
        font-size: 13px;
        border-radius: 10px;
        background-color: #232f40;
        color: #fff;
        border: 1px solid #fff;
        left: 30%;
    }

    .reservation-top-area {
        height: 38vh;
    }

    #anaBolge {
        display: flex;
    }

    .btn-user-detail {
        max-width: 70% !important;
    }

    .rez-second-info-area span {
        margin-left: 30px;
    }

    .rez-second-info-area label {
        min-width: 130px;
    }

    .reservation-seats-container {
        height: 30vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .act-detail-btn {
        position: absolute;
        right: 5px;
        padding: .25rem 3px !important;
        top: 10px;
        font-size: 14px;
        border: none;
        background-color: #232f40;
        color: #fff;
        font-weight: 500;
        border-radius: 50%;
        width: 30px;
    }

    .activity-description-header {
        text-align: left;
    }

    .sold-tickets-information {
        text-align: left;
    }

    .menu-text i:last-child {
        margin-left: 10px !important;
        margin-top: 4px !important;
    }

    .right-div-area {
        position: fixed;
        right: 0;
    }

    .sales-div-area {
        max-height: 80vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }


    #defaultOrder .tile-link {
        margin: 5px;
        padding: 2px !important;
    }

    .am-link .row,
    .user-row .col-6 {
        padding: 5px 0;
    }

    .activity-result div,
    .activity-manage-result div {
        padding: 5px 0;
        text-align: center !important;
    }

    .navbar-nav {
        width: 50%;
        justify-content: space-around;
    }

    .am-mobile-label {
        display: none !important;
    }

    .report-mobile-label .reload-page-link {
        padding: 23px 10px !important;
        background-color: green;
        color: #fff !important;
        font-weight: 600;
        border-radius: 0 0 0 52%;
        top: 0 !important;
        right: 0 !important;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .main-nav-link {
        font-size: 17px !important;
    }
}

.main-container {
    flex-wrap: wrap;
}

.transfer-info h3 {
    font-size: 23px;
}

.transfer-info {
    padding-top: 40px;
}

.user-list-top-btn {
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    width: 36%;
    z-index: 100;
}

.top-btn {
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 2px 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    width: 45%;
}

.top-btn i {
    font-size: 10px;
    margin-left: 5px;
}


.options-window-area .table {
    font-size: 15px;
}

.options-window-area {
    min-height: 100vh;
    padding: 60px 30px;
}

.user-code a {
    text-decoration: none !important;
}

.close-area {
    background-color: #d40303;
    color: #fefefe;
    border: none;
    border-radius: 0 0 0 10px;
    padding: 3px 10px;
    z-index: 9999;
    margin-left: auto;
    position: absolute;
    top: 0;
    right: 0;
}

.close-area i {
    font-size: 18px !important;
}

.custom-activity-input {
    max-width: 250px !important;
}

.input-100 input {
    max-width: 100% !important;
}

.table th {
    padding: .75rem 0.25rem !important;
}

.act-list {
    max-height: 100vh;
    overflow-y: auto;
}

.transfer-info h3 {
    font-size: 20px !important;
}

.daily-tour button {
    border: none !important;
    background-color: transparent !important;
    cursor: pointer !important;
    width: 100%;
    text-align: left;
    padding: 10px;
    transition: .3s ease-in-out;
}

.daily-tour button:focus {
    outline: none !important;
}

.daily-tour button:hover {
    background-color: #000 !important;
    color: #fff !important;
    transition: .3s ease-in-out;
}

.daily-tour .table td {
    padding: 0 !important;
}

#divSeatProcess {
    display: block;
    padding: 0 20px;
    min-width: 310px;
}

.seat-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10px;
    position: relative;
    width: 150px;
    margin-top: 30px;
}

.seat-container button {
    height: 26px;
    width: 19px;
    border-radius: 34%;
    margin-right: 3px;
}

.seat-label {
    margin-right: 5px;
    position: absolute;
    left: -8px;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    top: 100px;
    border-radius: 10px;
    padding: 0px 4px;
}

.atv-img {
    width: 85px !important;
    height: 58px !important;
}

.seats {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 20px;
    left: 50px;
}

.modal-content {
    height: 90vh !important;
}

.modal-lg {
    max-width: 90% !important;
}

.atv-seats {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: -17px !important;
    left: 43px !important;
}

.camel-seats {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 10px;
    left: 75px;
}

.camel-img {
    height: 60px !important;
    width: 105px !important;
}

.camel-span {
    color: #000 !important;
    top: 28px;
}

.horse-span {
    color: #000 !important;
    top: 10px;
    left: -10px;
}


.activity-result-header div {
    text-align: center;
    padding: 6px 0;
}

.change-form label {
    text-align: right;
}

.change-form .col-sm-8 {
    align-content: center;
}

.car-seats,
.classic-car-seats {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 20px;
    left: 75px;
    flex-direction: column !important;
    max-height: 65px !important;
}

.user-info {
    display: flex;
    flex-wrap: wrap;
}

.user-icon {
    width: 100%;
    display: flex;
    justify-content: center;
}

.user-icon span {
    font-size: 50px;
    border: 2px outset;
    padding: 15px 31px;
    border-radius: 50px;
    background-color: #232f40;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #fff;
}

.dropdown-menu {
    background-color: #FBF3D5 !important;
}

#divActivityList .table {
    background-color: #D6DAC8;
    font-size: 13px !important;
}

#navbarNavDropdown .dropdown-item {
    padding: .35rem .5rem !important;
    font-weight: 300 !important;
    transition: .2s ease;
}

#navbarNavDropdown .dropdown-menu {
    padding: 0 10px !important;
}

#navbarNavDropdown .dropdown-item:hover {
    background-color: #fbf3d5 !important;
    padding-left: 5px !important;
    font-weight: 600 !important;
    transform: scale(1.01);
    transition: .2s ease;
}

.tile-link {
    border: 1px solid #b7c6d8;
    padding: 2px;
    transition: all 1s ease-out;
    min-height: 346px;
}

.tile-1 {
    box-shadow: 1px 6px 25px -2px #08528d;
    background-color: rgb(40 66 104);
    color: #fff;
}


.sidebar-wrapper {
    width: 290px;
    padding: 0;
    height: calc(100vh - 65px);
    background: #232f40;
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 999;
    -webkit-transition: left .3s ease, width .3s ease;
    transition: left .3s ease, width .3s ease;
    display: none;
}

.sidebar-custom-nav {
    min-height: 210px;
    padding: 10px 0 10px 0;
    background: #18202b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sidebar-menu {
    padding: 0 0 20px 0;
    height: calc(100vh - 275px);
}

.sidebarMenuScroll {
    height: 100%;
}

.sidebar-custom-nav button {
    min-width: 105px;
    min-height: 80px;
    background: #232f40;
    padding: 10px;
    margin: 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #bec9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: .9rem;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    border: none !important;
    box-shadow: rgba(255, 255, 255, 0.26) 0px 1px 4px;
}

.sidebar-custom-nav button:hover {
    background-color: #36455b;
}

.sidebar-custom-nav button:focus {
    outline: none !important;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 10px 7px 10px 60px;
    margin: 0;
}

.sidebar-menu ul li.active .sidebar-submenu {
    display: block;
}

.sidebar-menu ul li a {
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;
    padding: 4px 20px 4px 0px;
    color: #bec9d9;
    background: #232f40;
    font-size: .9rem;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.os-viewport {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    outline: 0 !important;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.os-padding {
    box-sizing: inherit;
    direction: inherit;
    position: absolute;
    overflow: visible;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    /* z-index: 0; */
}

.os-content-glue {
    box-sizing: inherit;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}

.os-size-auto-observer {
    box-sizing: inherit !important;
    height: 100%;
    width: inherit;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.sidebar-menu ul li {
    margin: 0;
    padding-top: 5px;
}

.os-resize-observer-host.observed {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.os-resize-observer-host {
    padding: inherit;
    border: inherit;
    border-color: transparent;
    border-style: solid;
    box-sizing: border-box;
}

.os-resize-observer,
.os-resize-observer-host {
    box-sizing: inherit;
    display: block;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.os-host,
.os-host-textarea {
    position: relative;
    overflow: visible !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden>.os-scrollbar-vertical {
    top: 0;
    bottom: 0;
}

.os-theme-dark>.os-scrollbar,
.os-theme-light>.os-scrollbar {
    padding: 2px;
    box-sizing: border-box;
    background: 0 0;
}

.os-theme-dark>.os-scrollbar-vertical,
.os-theme-light>.os-scrollbar-vertical {
    bottom: 10px;
    width: 10px;
}

.os-host-transition>.os-scrollbar,
.os-host-transition>.os-scrollbar-corner {
    -webkit-transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s,
        bottom 0.3s, left 0.3s;
    transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s,
        left 0.3s;
}

.sidebarMenuScroll .os-scrollbar-vertical {
    left: 0;
    right: initial;
}

.os-scrollbar-auto-hidden,
.os-padding+.os-scrollbar-corner,
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden>.os-scrollbar-corner,
.os-host-scrollbar-horizontal-hidden>.os-scrollbar-horizontal,
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden>.os-scrollbar-corner,
.os-host-scrollbar-vertical-hidden>.os-scrollbar-vertical,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden+.os-scrollbar-vertical+.os-scrollbar-corner,
.os-scrollbar-horizontal+.os-scrollbar-vertical.os-scrollbar-auto-hidden+.os-scrollbar-corner,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden+.os-scrollbar-vertical.os-scrollbar-auto-hidden+.os-scrollbar-corner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sidebar-submenu button {
    background: transparent;
    border: none;
    color: #bec9d9;
    cursor: pointer;
}

.sidebar-submenu ul {
    padding: 0px;
    position: absolute;
    background-color: #384251;
    color: #000;
    border-radius: 0 0 5px 5px;
}

.sidebar-submenu ul li:hover {
    padding-left: 15px;
    border-left: 2px solid #98bee5;
    border-right: 2px solid #98bee5;
    transition: all 0.3s ease;
    background-color: #18202b;
}

.sidebar-dropdown>.menu-text {
    color: #fff;
}

.select-act-type i:first-child {
    margin-right: 1px;
}

.select-act-type i:last-child {
    margin-left: auto;
}

/* .select-act-type {
    display: flex;
    align-items: center;
    justify-content: space-around;        
    transition: .3s ease; 
    max-width: 105px;   
} */

.sidebar-menu .sidebar-dropdown .sidebar-submenu ul li button:hover {
    color: #fff;
    background-color: #36455b;
    transition: .3s ease;
}

.sidebar-menu .sidebar-dropdown .sidebar-submenu ul li button:hover i:first-child {
    animation: iconUpDown 1.5s linear infinite;
}

.os-content ul {
    padding-left: 5px;
}


.activity-header {
    padding-left: 25px;
    background-color: #18202b;
    width: 100%;
    margin-left: 0px !important;
    font-size: 18px;
    padding-top: 15px;
}

.sidebar-dropdown {
    list-style: none;
    padding-left: 10px;
}

.sidebar-dropdown .dropdown-handler {
    width: 100%;
    background-color: transparent;
    border: none !important;
    text-align: left;
    padding: 8px 15px;
    color: #fff;
}

.sidebar-dropdown .dropdown-handler:focus {
    outline: none;
}

.sidebar-dropdown .sidebar-submenu {
    padding-left: 15px;
}


.dropdown-handler .menu-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

/* .select2-container {
    z-index: 9999 !important;
} */

#divSessionInfo i {
    font-size: 25px;
}

.sidebar-dropdown .menu-text i:first-child {
    margin-right: 7px;
}

#mobileSidebarOpener {
    position: absolute;
    right: 25px;
    border: none;
    background-color: transparent;
    font-size: 30px;
    display: none;
}

#mobileSidebarOpener:hover {
    animation: iconUpDown 1.5s linear infinite;
}

.atv-seats img {
    height: 47px !important;
    width: 23px !important;
    position: absolute;
    top: 0;
    left: 0;
}

.atv-seats button,
.camel-seats button,
.horse-seats button {
    border: none !important;
    height: 50px;
    position: relative;
    background-color: transparent;
}

.camel-seats img {
    height: 47px !important;
    width: 23px !important;
    position: absolute;
    top: 0px;
    left: 0;
}

.camel-seats {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: -20px;
    left: 67px;
}

.card-img-main {
    width: 98%;
}

.tour-information {
    display: flex;
    justify-content: space-around;
    padding: 0 5px;
    border-bottom: 1px solid;
    margin: 0 auto;
    max-width: 300px;
}

.tour-information img {
    height: 30px !important;
    width: 14px !important;
}

.tour-information div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-label {
    font-weight: 600;
}

.user-info-btn {
    background-color: transparent;
    border: none;
    text-align: left;
}

.user-info-btn:hover {
    animation: color-change 2s infinite;
}

@media(max-width:992px) {

    .user-info-btn div,
    .description-header div {
        padding: 0 !important;
    }

}

.user-row span {
    margin-left: 5px;
}

.jeep-img {
    width: 210px;
    height: 105px;
}

.car-seats .reservationSeat img,
.classic-car-seats .reservationSeat img {
    width: 30px;
    height: 30px;
}

.car-seats .reservationSeat,
.classic-car-seats .reservationSeat {
    background-color: transparent;
    border: none !important;
}

.jeep-seat {
    width: 30px !important;
}

.atv-span {
    top: 14px !important;
    left: -2px !important;
}

.camel-span {
    top: 10px !important;
    left: -11px;
}

.horse-img {
    top: 4px !important;
    height: 70px !important;
    width: 105px !important;
}

.horse-seats {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: -18px;
    left: 75px;
}

.horse-seats img {
    height: 47px !important;
    width: 23px !important;
    position: absolute;
    top: 4px;
    left: -4px;
}

@media(max-width: 1200px) {
    .activity-description-header {
        display: none !important;
    }    

    .reservation-sub-info-area {
        top: 175px;
        padding: 0 25px;
    }

    .text-left .page-header{
        text-align: left !important;
        padding: 10px 13px !important;    
    }    
}

.sold-tickets-filter-area {
    display: flex;
    flex-wrap: wrap;
}

.select2-selection__rendered {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media(min-width: 769px) and (max-width: 1200px) {

    .sold-tickets-information .col,
    .sold-tickets-filter-area .col {
        display: flex;
        flex-direction: column;
        width: 33% !important;
        flex: 1 0 33% !important;
        padding: 5px;
    }
}

@media(max-width: 1250px){
    .notification-text{
        display: none;
    }
}

.ad-mobile-label {
    font-weight: 600;
    margin: 5px 0;
    background-color: #eaeaea;
}

.select2-container--default .select2-selection--single {
    border: none !important;
}

.select2-selection__rendered {
    padding: 2px 5px !important;
    height: 33px !important;
}

.default-seat img {
    width: 30px;
    height: 50px;
}

.default-seat {
    background-color: transparent;
    border: none !important;
}

.default-span {
    top: 0px !important;
    left: 35px !important;
}

.car-seats-single {
    position: absolute;
    left: 73px;
    top: 19px;
    width: 118px;
}

.car-seats-single button {
    width: 100%;
    height: 64px;
    border-radius: 9px;
}

.atv-seats-single {
    position: absolute;
    left: 29px;
    top: -4px;
    width: 93px;
    height: 70px;
    z-index: 0;
}

.atv-seats-single button {
    height: 100%;
    width: 100%;
    border-radius: 20px !important;
}

.camel-seats-single {
    width: 119px;
    height: 90px;
    position: absolute;
    left: 15px;
    top: -17px;
    padding: 3px 0;
}

.camel-seats-single button {
    width: 100%;
    height: 100%;
    border-radius: 20px !important;
}

.horse-seats-single {
    width: 115px;
    height: 80px;
    position: absolute;
    top: -4px;
    left: 19px;
}

.horse-seats-single button {
    width: 100%;
    height: 100%;
    border-radius: 20px !important;
}

.am-mobile-label {
    font-weight: 600;
    margin-right: 5px;
}

.activity-manage-result div {
    text-align: left;
}

.am-link {
    text-decoration: none !important;
    color: #000 !important;
}

.am-link:hover .border-top {
    animation: color-change 2s infinite !important;
}


.sold-tickets-information {
    position: relative;
    background-color: #fff;
}


.fill-input-container {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 15px 0;
}

.fill-input-container input {
    margin-left: 10px;
}

.fill-input-container div {
    background-color: #198754;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}

.contact-wp {
    position: fixed;
    bottom: 8px;
    right: 20px;
    background-color: #fff;
    border-radius: 60px;
    width: 55px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 55px;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: .3s ease-out;
    z-index: 99;
}

.contact-wp i {
    font-size: 40px;
    color: #0cc143;
}

.contact-wp:hover {
    transform: scale(1.03);
    transition: .3s ease-in;
}

.datepicker-mini {
    display: flex;
    justify-content: center;
}

.mini-datepicker-container {
    margin-top: 20px;
    background-color: #9CAFAA;
    padding: 30px 5px;
    border-radius: 5% 5% 0 0;
    box-shadow: rgba(0, 0, 0, 0.46) 0px 6px 9px;
    max-width: 785px;
    margin: 20px auto;
    height: 300px;
}

.mini-datepicker-container .calendarContent {
    border-radius: 10px;
    height: 170px;
}

.mini-datepicker-container .calendarHeader {
    margin-bottom: 13px;
}

#divdatePicker {
    background-color: transparent;
}

.close-datepicker {
    position: absolute;
    right: 0;
    top: 20px;
    background-color: #d40303;
    color: #fefefe;
    border: none;
    border-radius: 0 10px 0 10px;

}


.datepicker-mini .col {
    border-radius: 30px;
}

.datepicker-mini .col:hover {
    background-color: #000;
    color: #fff !important;
    transition: .2s;
}

.title-link-container img {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.mini-modal {
    width: 40% !important;
    height: 40vh !important;
    margin: 0 auto !important;
}

.classic-car-seats {
    left: 96px !important;
}

.second-info-area .col {
    flex-direction: row !important;
}

.second-info-area .col-6 span {
    margin-left: 10px;
}

.custom-activity-header {
    border-radius: 8px;
    height: 25px;
}

.custom-activity-header i {
    position: absolute;
    left: 15px;
    top: 11px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}

.activity-name {
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    font-size: 23px !important;
}

.errorModal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
}


div:where(.swal2-container) {
    z-index: 9999 !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    border: 1px solid black !important;
    border-radius: 7px !important;
    background-color: #ff5722 !important;
}

div:where(.swal2-container) button:where(.swal2-styled) {
    padding: .525em 2.1em !important;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
    background-color: #faf7f0 !important;
}

.events-of-hour {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #9fa3a7;
}

.row-header-area {
    background-color: #232f40;
    color: #fff;
}

.events-of-hour .hour-info {
    /* background-color: #faf7f0; */
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    text-align: center;
    font-weight: 500;
    padding: 3px 0;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
    font-size: 20px;
}

.activity-row {
    cursor: pointer;
    font-weight: 500;
}

.activity-row:hover {
    animation: color-change 2s infinite;
}

.location-for-service {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
}

.location-for-service div {
    display: flex;
    justify-content: start;
    align-items: center;
}

.location-for-service div input {
    margin-left: 10px;
}

.reserve-col {
    background-color: #f1f1f1;
    height: 34px;
    margin: 0 0px;
    width: 50px;
    margin: 5px 5px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 1px;
}

.reserve-col i {
    font-size: 22px;
}

.reserve-col:hover {
    animation: color-change 2s infinite;
}

.card-buttons-area {
    padding: 20px 10px;
}

.card-buttons-area button {
    width: 80%;
    margin: 0 auto;
    padding: 8px;
}

.footer-card {
    border-radius: 0 0 5px 5px !important;
}

.head-card {
    border-radius: 5px 5px 0 0 !important;
}

.body-card {
    border-radius: 0 !important;
    flex-direction: row !important;
}


.is-reserved {
    background-color: #ff5722;
}

.cancel-rezerve {
    background-color: #ffe122;
}



.location-for-service label {
    padding: 5px 0;
}

.service-locations-label {
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 1px solid;
}

.seat-row h3 {
    font-size: 1rem !important;
}

.activity-icon {
    width: 26px;
    height: 26px;
}

.seat-row .form-control {
    padding: .175rem .4rem !important;
}

.main-filter-bar {
    position: fixed;
    top: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 25px;
    background-color: #eaeaea;
    padding: 4px 15px;
    z-index: 10;
    background-color: #232f40;
    z-index: 99999;
}

#filterActiveDate {
    font-weight: 800;
}

#defaultOrder .tile-link {
    min-height: 50px !important;
    text-decoration: none !important;
    width: 100%;
}

#defaultOrder {
    display: block;
}

.act-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}


.act-btns .tile-link {
    min-height: 50px !important;
}


.close-reservation-area,
.close-seat-area {
    position: absolute;
    right: 0;
    border: none;
    background-color: transparent;
    background-color: #ff5722;
    border-radius: 0px 5px 0 5px;
}

.second-area {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
}

.select-act h5 {
    padding: 15px 0;
    position: absolute;
    bottom: -6px;
    text-shadow:  
   1px 1px 0px rgba(0, 0, 0, 0.8),  
   -1px -1px 0px rgba(0, 0, 0, 0.8),  
   1px -1px 0px rgba(0, 0, 0, 0.8),  
   -1px 1px 0px rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 98%;
    border-radius: 6px;
    background-color: rgba(40, 38, 39, 0.53);
}

.select-act img {
    width: 100%;
    height: 170px;
    border-radius: 10px;
    height: 150px;
}

.select-act-type i {
    font-size: 20px;
    margin: 10px 0;
}

.sidebar-submenu ul li {
    padding: 10px 10px;
    transition: .3s ease-in-out;
    background-color: #384251;
    color: #eaeaea;
    display: block;
    min-width: 200px;
    text-align: left;
    padding-top: 5px;
    border-bottom: 1px solid #ffffff40;
}


#divActivitySeats {
    margin: 0 auto;
}

.mobile-dropdown-menu-handler {
    display: none;
}

.row>.col-12>strong {
    font-size: 20px;
}

.check-inputs-area {
    position: relative;
}

.select-all {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 5px;
    background-color: #56c256;
    color: #fff;
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media only screen and (min-width:780px) {
    .select-all {
        top: 50px;
    }
}

@media only screen and (max-width:780px) {
    .g-8 {
        gap: 0 !important;
    }



}

.activity-icon-area img {
    width: 60px;
    height: 50px;
}

.datepicker-container .form-control {
    font-weight: 500 !important;
}

#makeRez {
    margin: 5px auto;
    width: 31%;
    position: fixed;
    bottom: 38px;
    padding: 12px;
    font-weight: 600;
    z-index: 99;
    font-size: 15px !important;
}

.row-height {
    height: 22px;
}

#makeRez:hover {
    background-color: #4caf50 !important;
}

.mt-e {
    margin-top: -19px !important;
}


@media only screen and (max-width:780px) {
    .make-rez-container {
        margin: 5px auto;
        width: 96%;
        position: fixed;
        bottom: 38px;
        padding: 12px;
        font-weight: 600;
        z-index: 99;
        font-size: 15px !important;
    }

    #makeRez {
        width: 90%;
    }

    .row-height {
        height: 70px;
    }
}

.can-reserve .tooltiptext,
.is-reserved .tooltiptext,
.cancel-rezerve .tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: #fffef0;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 0px 0;
    position: absolute;
    z-index: 1;
    font-size: 13px;
    top: 43px;
    left: 67px;
    border: 1px solid #d7d7d7;
}

.tooltip-phone {
    visibility: hidden;
    width: 90px;
    background-color: #fffef0;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 0px 0;
    position: absolute;
    z-index: 1;
    font-size: 14px;
    top: 25px;
    left: 50px;
    border: 1px solid #d7d7d7;
}

.is-reserved .tooltiptext {
    background-color: #f3683c !important;
}

.cancel-rezerve .tooltiptext {
    background-color: #f5d717 !important;
}

.can-reserve:hover .tooltiptext,
.is-reserved:hover .tooltiptext,
.cancel-rezerve:hover .tooltiptext,
.phone-visible:hover .tooltip-phone {
    visibility: visible;
}

.account-processes .sidebar-submenu {
    position: absolute;
    text-align: left;
    min-width: 150px !important;
    z-index: 3;
}


.account-processes {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.account-processes .dropdown-handler {
    background-color: transparent;
    box-shadow: rgba(255, 255, 255, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 5px;
}

.account-processes .sidebar-submenu ul {
    min-width: 150px !important;
}

.account-processes .sidebar-submenu ul li {
    cursor: pointer;
    list-style: none;
}

#clock {
    width: 35px;
}

.user-process-container {
    width: 74%;
}

.user-process-container .dropdown-handler {
    width: 100%;
    position: relative;
}

.user-process-container .dropdown-handler i {
    /* position: absolute;
    right: 5px;
    top: 5px; */
    color: #fff;
    font-size: 15px;
}

.other-report-infos {
    display: flex;
    justify-content: space-around;
}

.card .pay {
    display: flex;
    justify-content: space-around;
    padding: 10px 5px;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
}

.report-account h3 {
    text-align: center;
    font-size: 1.35rem;
}

.report-area .card-body {
    padding: .5rem !important;
}

.report-table {
    width: 100%;
}

.report-description {
    display: flex;
    background-color: #eaeaea;
    padding: 4px 10px;
    border-radius: 5px;
}

.report-description p {
    margin-left: 5px;
}

.report-description span {
    font-size: 15px;
    font-weight: 600;
}

.report-table th,
.report-table td {
    border-left: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.report-table th:last-child,
.report-table td:last-child {
    border-right: 1px solid #eaeaea;
}

.service-location-header {
    width: 200px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    background-color: #232f40;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
}

.service-hotel-header {
    width: 200px;
    text-align: center;
    margin-top: 10px;
    background-color: #FDE7BB;
}

.total-rez-row {
    background-color: #232f40;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
}

.activity-description-header {
    color: #fff;
    background-color: #232f40;
}

.reservation-user-options {
    justify-content: center;
    display: flex;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

.reservation-user-options .nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 85%;
    font-size: 15px;
    padding: 5px 0px;
}

.cancel-btn-reservation {
    border: none;
    background-color: #ff5722;
    border-radius: 5px;
    color: #fff;
}

.description-header {
    background-color: #232f40;
    color: #fff;
    text-align: center;
}

.second-info-area {
    text-align: center;
}

.rez-second-info-area {
    text-align: left;
}

.am-table-header {
    background-color: #232f40;
    color: #fff;
}

.activity-result-header {
    background-color: #232f40;
    color: #fff;
}

#editActivity .form-control {
    width: 50% !important;
}

#reservationInfoArea {
    max-height: 385px;
}

.aktif-check-area {
    position: absolute;
    right: 10px;
    color: #fff;
    bottom: 10px;
}

.activities-types {
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
}

.act-lbl,
.psv-lbl {
    border-radius: 10px;
    padding: 2px 4px;
    font-weight: 600;
}

.ui-datepicker-calendar .ui-state-default {
    text-align: center;
    font-weight: 600;
    color: #000;
    border-radius: 20%;
}

.ui-datepicker .ui-datepicker-next {
    background-image: url('../images/right-arrow.png') !important;
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: 30px;
    padding: 0 !important;
    margin: 0 !important;
}

.ui-datepicker .ui-datepicker-prev {
    background-image: url('../images/left-arrow.png') !important;
    background-repeat: no-repeat;
    background-size: 30px;
    object-fit: cover;
    padding: 0 !important;
    margin: 0 !important;
}

.ui-datepicker-header {
    background-color: #9aa0aa !important;
    color: #fff !important;
}

.rez-mobile-label {
    font-weight: 600;
}

.rez-rows-container {
    margin: 15px 0;
}

.rez-cancel-btn {
    background-color: #ff5722;
    border: none;
    border-radius: 5px;
    padding: 2px 5px;
    color: #fff;
    font-size: 14px;
}

.rez-cancel-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.page-header {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 0;
    color: #fff;
    background-color: #232f40;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-filter-handler i {
    display: none;
}

@media(min-width: 992px) and (max-width: 1300px) {
    .btn-time-range {
        font-size: 14px;
        min-width: 50px;
    }

    .datepicker-container {
        min-height: 310px;
    }

    .calender-bottom-btns{
        position: static !important;
        padding-top: 15px !important;
        width: 100%;
        justify-content: space-around;
        display: flex;
    }
}

@media(min-width: 992px) and (max-width: 1200px) {
    .main-container {
        margin-top: 65px;
    }

    .time-filter-handler span {
        display: none;
    }

    .time-filter-handler i {
        display: block !important;
    }

    .time-filter-handler {
        width: 40px !important;
        font-size: 18px !important;
    }

    .reservation-sub-info-area {
        top: 224px;
        padding: 0px 3px;
    }

    .custom-activity-header {
        margin-right: 15px !important;
    }
}

.user-header span {
    margin-left: 10px;
}

.user-info-container {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 10px;
}

.user-info-container div {
    margin: 5px 0;
}

.user-info-container div span {
    min-width: 115px
}

.change-form .form-control {
    max-width: 285px !important;
}

.psw-submit {
    max-width: 285px;
}

@media(min-width: 576px) and (max-width: 768px) {
    .btn-user-detail {
        width: 100%;
        max-width: 135px;
        margin-left: 15px;
        padding: 0;
        font-weight: 600;
    }
}

.btn-user-detail {
    border-radius: 5px;
    font-size: 14px;
    border: none;
}

.mask {
    height: 100vh;
    background-color: rgba(102, 98, 100, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.fixed-bar {
    position: sticky;
    top: -1px;
    z-index: 99999;
    width: 100%;
    height: 34px;    
}

.process-buttons {
    display: flex;
    justify-content: start;
    padding: 5px 0;
    background-color: #eaeaea;
}

.process-buttons button {
    margin-left: 10px;
}

.bar-button {
    border: none;
    border-radius: 3px;
    padding: 3px;
}

.sold-tickets-filter-area .form-control {
    padding: .375rem .45rem !important;
}

.mainpage-container {
    display: flex;
    flex-direction: column;
}

@media(max-height: 1000px) {
    .reservation-seats-container {
        height: 220px;
        overflow-y: scroll;
    }

    #divActivityList {
        max-height: 55vh;
    }

    .reservation-seats-container {
        height: 34vh !important;
    }

    #reservationInfoArea .container {
        height: 42vh !important;
    }

    #editActivity .footer-card {
        height: 42vh !important;
    }
}

.report-description-area,
.report-description-header {
    text-align: left !important;
    padding: 10px 30px !important;
}

.report-description-area {
    background-color: #eaeaea;
    border-radius: 3px;
}

.report-description-header {
    font-weight: 600;
}

.report-table {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.report-table .row {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.report-table-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media(min-width: 769px) and (max-width: 992px) {
    .report-table-row {
        padding: 0 15px !important;
    }

    .report-col {
        justify-content: start;
    }
}


#editActivity .footer-card {
    height: 342px;
}

#reservationInfoArea .container {
    height: 342px;
    overflow-y: scroll;
}

@media(max-width: 576px) {
    .login-header span {
        font-size: 13px !important;
    }

    .time-filter-handler i {
        display: block !important;
    }

    .time-filter-handler span {
        display: none !important;
    }

    .time-filter-handler {
        position: absolute;
        top: 10px !important;
        height: 32px;
        width: 45px !important;
        background-color: #232f40;
        color: #fff;
        border-radius: 10px;
        font-size: 18px !important;
        border: 1px solid #fff;
        left: 28%;
    }

    .select-all {
        top: -35px !important;
    }

    .reserve-col {
        width: 57px !important;
    }
}

.select-act-type h5 {
    font-size: 16px !important;
}

#Yil,
#Ay {
    font-size: 16px !important;
}

.mt-12 {
    margin-top: 12px;
}

.g-8 {
    gap: 8px;
}

.calender-bottom-btns {
    position: absolute;
    bottom: 8px;
    right: 5px;
}

.btn-time-range {
    border: none;
    border-radius: 3px;
    box-shadow: rgba(255, 255, 255, 0.26) 0px 1px 4px;
    font-weight: 600;
    padding: 4px 3px;
    font-weight: 400;
    background-color: #fff;
}

.custom-activity-time-info {
    background: #e3f2ff;
    max-width: 160px;
    padding: 3px 5px;
    font-weight: 500;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.time-select-area {
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    position: absolute;
    top: 50px;
    background-color: #232f40;
    border-radius: 5px;
    border: 1px solid gray;
    left: 25%;
}

.time-btn {
    border-radius: 5px;
    margin-left: 5px;
    margin-top: 5px;
    width: 60px;
    height: 30px;
    background-color: #fff;
    border: none;
    font-weight: 300;
}


.btn-rez-satir-sil {
    font-size: 13px !important;
}

.fill-btn {
    font-size: 13px !important;
}

.kont-btn-group {
    text-align: end;
    margin-bottom: 7px;
}

.clock-filter-span {
    left: 34%;
    position: absolute;
    bottom: -23px;
    height: 23px;
    width: 98px;
    display: none;
    font-size: 14px;
    background-color: #eaeaea;
    text-align: center;
    border-radius: 5px;
    border: 1px solid;
}

.select-act {
    border-radius: 10px !important;
    position: relative;
}

.reservation-sub-info-area {
    position: absolute;
}

@media(max-width: 400px) {
    .reservation-sub-info-area {
        top: 200px !important;
        padding: 0 !important;
    }

    .custom-activity-header {
        margin-right: 15px;
    }
}

@media(max-width: 450px) {
    .btn-time-range {
        font-size: 14px;
        min-width: 50px;
    }

    .calender-bottom-btns {
        width: 100%;
        justify-content: space-around;
        display: flex;
    }

    .datepicker-container {
        min-height: 310px;
    }
}

.reservation-seats-container {
    overflow-x: hidden;
}

.time-select-area {
    padding: 15px 18px;
}

.time-filter-handler {
    font-weight: 400 !important;
}

.report-account h3 {
    margin-bottom: 0;
    padding: 3px 15px 0px 15px;
    font-weight: 600;
}

.report-account {
    justify-items: center;
}

.report-h4 {
    max-width: 350px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    background-color: #232f40;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
    padding: 5px;
}

.report-account {
    width: 50%;
    margin: 0 auto;
    border: 1px solid #000;
    border-style: dotted;
}

.orders {
    margin-bottom: 0 !important;
}

.report-area .card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.empty-svg {
    width: 18px;
    height: 18px;
    color: #03A9F4;
    margin-left: 5px;
}

.kont-sayi {
    background-color: #ecf4ff;
    border-radius: 26px;
    width: 48px;
    height: 44px;
    line-height: 42px;
}

.hover-last-date {
    background-color: #eaeaea;
    display: flex;
    justify-content: center;
    width: 95% !important;
    margin: auto;
    color: #000;
    border-radius: 5px;
}

.hotel-name,
.hotel-sp {
    background-color: #FF8C8C;
    width: 100%;
    overflow: hidden;
}

.agency-name,
.agency-sp {
    background-color: #9afc8d;
    width: 100%;
    overflow: hidden;
}

.agency-name,
.hotel-name {
    border-radius: 3px;
    padding: 3px 5px;
    position: absolute;
    left: 0;
    top: 5px;
}

.form-control {
    height: 33px !important;
    line-height: 23px !important;
}

.agency-sp,
.hotel-sp {
    border-radius: 3px;
    padding: 3px 5px;
}

.animation-cc {
    cursor: pointer;
}

.animation-cc:hover {
    animation: color-change 2s infinite;
}

.input-group-text {
    padding: .5rem .75rem !important;
}

.hover-service-infos div {
    visibility: hidden;
    width: 370px;
    color: #000;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    top: 55px;
    left: 13%;
    z-index: 1;
    text-align: center;
}

.hover-service-infos {
    width: 120px;
    padding: 5px 0;
    margin: 0 auto;
}

.hover-service-infos span:first-child {
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 3px 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 120px;
    background-color: yellow;
}

.hover-service-infos:hover div {
    visibility: visible;
}

@media(min-width: 992px) and (max-width: 1400px) {
    .hover-service-infos div {
        left: 4% !important;
    }

    #divOtherTabs {
        max-height: 335px;
        overflow-y: auto;
    }
}

.locations-box {
    padding: 20px 0 0 0;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.locations-box button {
    margin: 5px;
}

.custom-reservation-table {
    position: absolute;
}


.hour-style {
    font-size: 22px;
    color: #f1eb77;
}

.mt-style {
    margin-top: 5px !important;
}


.report-sub-header {
    position: absolute;
    top: 10px;
    left: 15px;
    color: #d40303;
    font-size: 20px;
    border-radius: 10px;
    padding: 2px 4px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}


.act-list::-webkit-scrollbar {
    width: 12px;
}

.act-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.act-list::-webkit-scrollbar-thumb {
    background: #232f40;
    border-radius: 10px;
}

.act-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.save-btn:hover {
    background-color: #1d7d1d !important;
}

.seat-row label {
    font-weight: 500;
}

.seat-row input {
    margin-bottom: 3px;
}

.sb-10 {
    margin-bottom: 10px !important;
}

.st-7 {
    margin-top: 10px !important;
}

.seat-row textarea {
    min-height: 50px !important;
}

.kont-style {
    background: #232f40;
    color: #fff;
    padding: 10px;
}

.reservation-user-options .nav-link {
    font-weight: 600;
    color: #232f40;
    padding: 4px !important;
}

.d-flex-user {
    align-content: flex-start;
}

.seat-textarea textarea {
    min-height: 50px !important;
}

.cont-top-s {
    border-top: 4px solid #232f40 !important;
}

.rezRow {
    background: #232f40;
    color: #fff;
}

.s-time {
    color: #006abe;
}

.form-row .form-label {
    margin-top: 11px !important;
}

.col-back {
    background: #232f40;
    color: #fff;
    padding: 8px;
}

@media(max-height: 800px) {
    #divActivityList {
        max-height: 43vh !important;
    }

    .reservation-seats-container {
        height: 30vh !important;
    }

    #reservationInfoArea .container {
        height: 42vh !important;
    }

    #editActivity .footer-card {
        height: 42vh !important;
    }
}


.show-note-area{
    position: absolute;
    left: 0px;
    top: 4px;
    width: 24px !important;
    display: flex;
    justify-content: center;
    height: 30px;
    align-items: center;
    border-radius: 5px;
    font-size: 20px;
    background-color: #eaeaea;    
}

.show-note-area:hover{
    animation: color-change .7s infinite ease-in-out;
}



.money-info {
    padding: 1px 2px;
    background-color: #f6f5f5;
}

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

.report-description-area {
    position: absolute;
    top: 50px;
    left: 0px;
    border: 1px solid;
    background-color: #eaeaea;
    transition: .3s ease-in-out;
    z-index: 9999;
}

.act-description {
    display: block;
    /* justify-content: space-between; */
    width: 75%;
    background-color: #eaeaea;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-top: 25px;
}

.act-description span {
    /* text-align: center; */
    /* margin-left: auto; */
    font-size: 18px;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.6);
}

.act-description p {
    padding: 0 5px;
}

.mainpage-container {
    margin-top: 50px;
}

@media only screen and (min-width:1200px){
    .mainpage-container {
        margin-top: 30px;
    }
    
}

.custom-select2-dropdown {
    position: absolute !important;
    top: auto !important;
    bottom: 100% !important; /* Dropdown'u input'un üstüne taşı */
    left: 0;
    width: 100% !important;
}

.has-select2-area, .has-select2-location, .has-select2-hotel{
    position: relative;
}


.select2-container, .select2-dropdown, .select2-search, .select2-results {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    }

.photo-frame-outer {
    box-shadow: 4px 6px 12px 0 black;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(109, 84, 58) rgb(24, 19, 13) rgb(24, 19, 13) rgb(109, 84, 58);    
}

.photo-frame-midial{
    border: 12px solid rgb(65, 40, 16);
}

.photo-frame-inner{
    border-width: 5px;
    border-style: solid;
    border-color: rgb(24, 19, 13) rgb(109, 84, 58) rgb(109, 84, 58) rgb(24, 19, 13);
}

#krtUserName, #krtUserId, #pUserId, #name{
    text-transform: uppercase;
}

.home-btn{
    width: 80px !important;
    right: 35px;
    top: -24px;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.page-select-btn{
    color: #fff !important;
    background-color: #232f40 !important;
    font-weight: 500;
}

.page-item.active .page-link {
    scale: 1.07;
}

.main-time-info-area{
    display: flex;
}

.for-whom-filter{
    display: block;
    padding: 0 10px;
}

.for-whom-filter .select2-container{
    width: 100% !important;
}

.active-limit-btn{
    color: #135ed0;
    transform: scale(1.1);
}

.accordion-body{
    padding: 5px !important;
}

@media(max-height: 700px){
    #ui-datepicker-div{
        top: 136px !important;
    }

    .act-list{
        padding-bottom: 25px;
    }
}

.ui-timepicker-container{
    z-index: 9;
}

@media(max-width: 1400px){
    .navbar-link-text{
        font-size: 14px !important;
    }
}

.navbar-link-text{
    font-size: 17px;
}

.navbar-link-text p {
    margin-bottom: 0 !important;
}

.custon-nl-text{
    display: flex;
    align-items: center;
}

/* .notif{
    display: flex;
    align-items: center;
} */

.notif i:first-child {
    display: block !important;    
}

.last-reservation-div{
    text-align: left;
}

#svg {
    position: absolute;
    bottom: -55px;
    z-index: -1;
    left: 0;
    height: 400px;
}

#divLastRezsArea{
    max-height: 450px;
    overflow-y: auto;
}

#divCacheClear{
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;    
}

.forgot-pass{
    font-size: 14px;
    background-color: #989da2;
}

.forgot-pass i{
    font-size: 13px;
}

.swal2-container {
    z-index: 9999 !important;
}

.active-notification{
    background-color: #0cc143 !important;
    color: #fff !important;
}

.definition-area, .user-definition-area {
    position: absolute;
    width: 80%;
    background-color: #fff;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.user-definition-area{
    height: 50%;
}

.user-definition-area .definition-close {
    width: auto;
}

.iptalsay {
    font-size: 17px;
    font-weight: 800;
    background-color: red;
    padding: 2px 10px;
    border-radius: 50%;
    color: #fff;
}

.rezsay{
     font-size: 17px;
    font-weight: 800;
    background-color: #193120;
    padding: 2px 10px;
    border-radius: 50%;
    color: #fff;
}

.definition-close{
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;    
    border: none;
    background-color: transparent;
}

.definition-close i{
    font-size: 25px;
}

.user-request-box{
    right: 0px;
    top: -7px;
    display: flex;
    justify-content: space-around;
    min-width: 75px;
    align-items: center;
    background-color: green;
    color: #fff;
    padding: 5px 3px;
    border-radius: 5px;
    position: absolute;
}

.modal-move-activities{    
    position: absolute;
    top: 25px;    
    z-index: 9;
    background-color: #fff;
    width: 90%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: auto;
    right: 24px;
    overflow-y: scroll;
    height: 80%;
}

.no-scroll {
  overflow: hidden;
}

.yellow-text{
    color: rgb(203, 203, 2) !important;
}

.red-text{
    color: rgb(176, 2, 2);
}

.green-text{
    color: #027202;
}
