html, body {
    height: 100%;
}
body {
    color: #3E334E;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 27px;
}
p {
    color: #3E334E;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
ol ul li {
    list-style: outside disc;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: normal;
}
h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
}
h3 {
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
}
h4 {
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
}
h5 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
}
h6 {
    font-size: 26px;
    font-weight: 400;
    line-height: 36px;
}
.container {
    max-width: 90%;
}
.badge {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    padding: 4px 24px;
    min-width: 100px;
}
.text-bg-success {
    color: #34A853;
}
.form-container .form-label {
    color: #3E334E;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
}
.form-container .form-control, .form-container .form-select,
.chosen-container, .chosen-container-single .chosen-single {
    background-color: #fff;
    border: 1px solid #AFA2C3;
    border-radius: 8px;
    color: #3E334E;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    min-height: 52px;
}
.form-container .form-select {
    line-height: 40px;
}
.form-container .form-select:required:invalid {
    color: #AFA2C3;
    font-size: 14px;
}
.form-container .form-select option[value=""][disabled] {
    display: none;
}
.form-container .form-select option {
    color: #3E334E;
}
.form-container textarea.form-control {
    min-height: 287px;
}
input[type="radio"] {
    border: 1px solid #AFA2C3;
}
input[type="number"]{
    padding-right: 3px;
}
.form-container .form-control::placeholder {
    color: #AFA2C3;
    font-size: 14px;
    opacity: 1;
}
.form-container .form-control::-moz-placeholder {
    color: #AFA2C3;
    font-size: 14px;
}
.form-container .form-control::-webkit-input-placeholder {
    color: #AFA2C3;
    font-size: 14px;
}
.form-container .form-control::-ms-input-placeholder {
    color: #AFA2C3;
    font-size: 14px;
}
.form-container .custom-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-container .form-check .form-check-label, .reset-password a {
    color: #3E334E;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
}
.form-container .form-check .form-check-input-gradient {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 17px;
    height: 17px;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    border: 1px solid #AFA2C3;
    top: 1px;
    left: 3px;
}
.form-container .form-check .form-check-input-gradient:checked {
    background: linear-gradient(90deg, #00C4FF 0%, #FBD101 100%);
}
.form-container .form-check .form-check-input-gradient::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url(../img/check-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.form-container .form-check .form-check-input-gradient:checked::before{
    display: block;
}
.form-container #login_password {
    padding-right: 40px;
}
.toggle-password {
    background: url(../img/hide-password-icon.png) no-repeat center center;
    background-size: contain;
    height: 24px;
    width: 24px;
    position: absolute;
    left: auto;
    right: 15px;
    top: 16px;
}
.toggle-password.password-visible {
    background: url(../img/show-password-icon.png) no-repeat center center;
    height: 17px;
    width: 20px;
    position: absolute;
    left: auto;
    right: 15px;
    top: 20px;
}
.reset-password a {
    border-bottom: 1px solid #3E334E;
    text-decoration: none;
}
.reset-password a:hover {
    border-bottom: 0 none;
}
.btn {
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    padding: 15px;
    text-align: center;
    text-decoration: none !important;
    min-height: 48px;
    max-width: 195px;
    width: 100%;
}
.btn-full {
    max-width: none;
}
.custom-input-group .btn {
    max-width: 46%;
}
.btn-primary {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e); 
}
.btn-primary:hover {
    background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
    border: 1px solid transparent;
}
.btn-warning {
    background: #FBD101;
    color: #fff;
}
.btn-warning:hover {
    background: #fee04a;
    border: 1px solid transparent;
    color: #fff;
}
.btn-gradient {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e);  
  
    border: 0 none;
    color: #fff;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
    border: 0 none;
    color: #fff;
}
.btn-outline {
    background: #fff;
    border: 1px solid #3E334E;
    color: #3E334E;
}
.btn-outline:hover {
    background: #3E334E;
    border: 1px solid #3E334E;
    color: #fff;
}
.box-left-col {
    /* background: url(../img/login-gradient.jpg) repeat center center; */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-right-col h1 {
    font-size: 32px;
    font-weight: 700;
}
.box-right-col-container {
    padding: 15% 20% 5%;
}
.box-right-col-container .form-container {
    margin-top: 17%;
}
form .row > [class*='col-'] {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 17px;
}
form .invalid-feedback {
    color: #EB4335;
    position: absolute;
    left: 12px;
    bottom: 0;
    font-size: 12px;
    line-height: normal;
    margin: 0;
    min-width: 100px;
    width: auto;
}
form .position-relative .invalid-feedback {
    left: 0;
}
.modal .modal-content {
    border-radius: 30px;
}
.modal .modal-header {
    padding: 30px 40px;
}
.modal .modal-header .modal-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.02em;
    margin: 0;
}
.modal .modal-header .btn-close {
    background: url(../img/icon-close.png) no-repeat center center transparent;
    background-size: 39px;
    opacity: 1;
    margin: 0;
}
.modal .modal-body {
    padding: 30px 40px 15px 40px;
}
.modal .modal-footer {
    padding: 40px;
}
.modal .modal-footer .btn {
    max-width: 150px;
    margin: 0 20px;
}
.modal .form-switch {
    padding-left: 0;
    padding-right: 3.5em;
}
.modal .form-switch .form-check-input {
    float: right;
    margin-right: -3.5em;
    width: 3.5em;
}
.custom-form-floating .form-label {
    font-size: 14px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 0;
}
.custom-form-floating .form-control {
    padding-top: 20px !important;
}
.form-container .form-control[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url(../img/icon-date-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 23px;
}
.form-container .form-control[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url(../img/icon-watch-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
}
.badge.text-bg-success {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e);
}
.badge.text-bg-secondary {
    background: #7D7D7D !important;
}
.badge.text-bg-danger {
    background: #FF0000 !important;
}
.badge.text-bg-warning {
    background: #F4991D !important;
    color: #fff !important;
}
.table thead th {
    color: #464E5F;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    height: 57px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}
.table tbody td {
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    padding: 15px 30px;
    height: 100px;
    text-align: center;
}
.table .btn {
    padding: 15px 10px;
    width: 130px;
}

.tooltips {
    background: none;
    border: 0 none;
    margin: 0;
    padding: 0;
    height: 16px;
    width: 16px;
    position: relative;
    top: 1px;
}
.tooltips img {
    display: block;
    max-height: none;
}
.tooltip-inner {
    font-size: 12px;
    line-height: 18px;
    max-width: 220px;
}
.custom-tooltip {
    max-width: 170px;
}


/*===== SIGN IN PAGE =====*/
.site-title-box {
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
    overflow: hidden;
    max-height: 600px;
    height: 100%;
    max-width: 67%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5% 10%;
}
.site-title {
    display: block;
    width: 100%;
}
.site-title h2 {
    color: #414042;
    font-size: 48px;
    font-weight: 600;
    line-height: 57px;
    margin-bottom: 30px;
}
.site-title h2 span {
    color: #fff;
}
.other-login {
    margin-top: 17%;
}
.other-login p {
    color: #B5B5B5;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}
.other-login-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    margin-bottom: 20px;
}
.other-login-icons a {
    margin: 0 10px 5px;
    text-decoration: none;
}
.other-login-icons img {
    display: block;
    margin: 0;
}

/*===== RESET PASSWORD PAGE =====*/
.form-container .verification-code {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 -9px;
}
.form-container .verification-code .form-control {
    font-size: 26px;
    height: 70px;
    margin: 0 9px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    text-transform: uppercase;
}
.get-new-code {
    margin-top: 17%;
    text-align: center;
}
#resend-verification-code {
    color: #FFCB40;
    text-decoration: none;
}
#resend-verification-code:hover {
    text-decoration: underline;
}

/*===== REGISTER PAGE =====*/
.page-register .box-right-col-container {
    padding-left: 8%;
    padding-right: 8%;
}
.page-register .box-right-col-container .form-container {
    margin-top: 35px;
}
.login-url {
    color: #00C4FF;
    text-decoration: none;
}
.login-url:hover {
    text-decoration: underline;
}
.picture {
    width: 107px;
    height: 107px;
    margin: 0 auto 12px;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.picture #profile_picture {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}
.profile-picture {
    width: 100%;
}
.profile-picture.show {
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}
.form-container .profile_picture_label {
    color: #AFA2C3;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.plate-picture-box {
    background: #fff;
    border: 1px solid #AFA2C3;
    border-radius: 8px;
    padding: 16px;
    height: 286px;
}
.plate-picture-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#wrap_img_vehicle {
    display: flex;
    position: relative;
    width: fit-content;
    justify-content:center;
    height: 100%;
}
.plate-picture-container img.plate-picture {
    /* height: 100%;
    width: 100%; */
    object-fit: contain;
}
.plate-picture-container img.plate-picture.show {
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.plate-picture-container input#plate_picture, .plate-picture-container input.form-plate_picture {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}
.form-container .plate-picture-box .form-label {
    color: #AFA2C3;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 0;
}
.nik-picture-container {
    width: 100%;
    height: 90px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
}
#wrap_img_nik {
    height: inherit;
    display: flex;
    position: relative;
    width: fit-content;
}
.nik-picture-container img.nik-picture {
    height: 100%;
    width: 100%;
    /*padding-right: 32px;*/
    object-fit: contain;
    object-position: center;
}
.nik-picture-container img.nik-picture.show {
    display: block;
    margin: 0 auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.nik-picture-container input#nik_picture {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}

.picture-container_2 {
    width: 100%;
    min-height: 90px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
}

.picture-container_2 input.picture-input {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}

/*===== HEADER SECTION =====*/
.header-section .navbar {
    padding-top: 0.5rem;
}
.navbar-dark {
    background: linear-gradient(180deg, #6F9471 0%, #325930 100%);
}
.header-section .navbar.bg-dark {
    background: linear-gradient(180deg, #6F9471 0%, #325930 100%);
    padding-top: 0.5rem;
}
.header-section .navbar-nav .nav-item {
    padding: 0 20px;
}
.header-section .navbar-nav .nav-item .nav-link {
    box-shadow: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    padding: 5px 8px;
    text-align: center;
    text-decoration: none !important;
}
.header-section .navbar-nav .nav-item .nav-link.active, .header-section .navbar-nav .nav-item .nav-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header-section .navbar-nav .nav-item .nav-link.active {
    font-weight: 700;
}
.header-section .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    margin-left: 10px;
    vertical-align: 2px;
}
.header-section .navbar-nav .nav-item .dropdown-menu {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 300px;
    left: 28px;
}
.header-section .navbar-nav .nav-item .dropdown-menu li {
    padding: 5px var(--bs-dropdown-item-padding-x);
}
.header-section .navbar-nav .nav-item .dropdown-menu li a {
    border-radius: 10px;
    color: #566270;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.header-section .navbar-nav .nav-item .dropdown-menu li a:hover, .header-section .navbar-nav .nav-item .dropdown-menu li a.active {
    background: linear-gradient(90deg, #92b786 4.05%, #3e643e 100%);
    color: #fff;
    padding: 10px 40px 10px 20px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.header-section .navbar-nav .nav-item .dropdown-menu li a:hover:after, .header-section .navbar-nav .nav-item .dropdown-menu li a.active:after {
    background: url(../img/icon-right-arrow-white.png) no-repeat center transparent;
    background-size: 17px 14px;
    content: '';
    display: block;
    height: 14px;
    width: 17px;
    position: absolute;
    left: auto;
    right: 15px;
    top: 15px;
}
.header-section .btn-login-register {
    flex-grow: 0;
    width: 265px;
}
.header-section .btn-login-register .btn {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    min-height: 48px;
    letter-spacing: 0;
    padding: 10px 35px 10px 20px;
    text-align: left;
    position: relative;
}
.header-section .btn-login-register .btn:after {
    background: url(../img/icon-right-arrow-white.png) no-repeat center transparent;
    background-size: 17px 14px;
    content: '';
    display: block;
    height: 14px;
    width: 17px;
    position: absolute;
    left: auto;
    right: 15px;
    top: 17px;
}
.header-section .btn-login-register .header-btn-login {
    background: none;
    border: 0 none;
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    padding-left: 8px;
    padding-right: 8px;
    max-width: 110px;
    text-align: center;
    text-decoration: none;
}
.header-section .btn-login-register .header-btn-login:after {
    display: none;
}
.header-section .btn-login-register .header-btn-login:hover {
    color: #000;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header-section .btn-login-register .header-btn-register:hover {
    color: #000;
    text-align: center;
    background-color: #fff;
}
.header-section .btn-login-register .header-btn-register {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    max-width: 140px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    background-color: #fff;
    color: #325930;
}
.header-section .btn-login-register .header-btn-register:after {
    display: none;
}
.header-section .btn-login-register .header-btn-logout {
    background: #808080;
    color: #fff;
}
.header-section .btn-login-register .header-btn-logout:hover {
    background: #5a5a5a;
}
.header-section .btn-login-register .btn.dropdown-toggle {
    border: 0 none;
    min-height: auto;
    padding: 0;
    text-align: right;
}
.header-section .btn-login-register .btn.dropdown-toggle::after {
    display: none;
}
.header-section .btn-login-register .btn.dropdown-toggle img {
    display: inline-block;
    height: 60px;
    width: 60px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    background-color: black;
}
.header-section .btn-login-register .dropdown-menu {
    left: auto;
    right: 0;
    width: 230px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-section .btn-login-register .dropdown-menu li {
    padding: 5px var(--bs-dropdown-item-padding-x);
}
.header-section.dark-text .navbar-nav .nav-item .nav-link {
    color: #000;
}
.header-section.dark-text .btn-login-register .header-btn-login {
    color: #000;
}
.header-section.dark-text .btn-login-register .header-btn-register span {
    background: linear-gradient(90deg, #00C4FF 22.27%, #FBD101 84.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header-section.dark-text .btn-login-register .header-btn-register:hover span {
    color: #333;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
    text-decoration: none;
}

/*===== FOOTER SECTION =====*/
.footer-section * {
    color: #fff;
}
.footer-section {
    background: linear-gradient(93.99deg, #566270 0.51%, #283444 100%);
    color: #fff;
    min-height: 545px;
}
.footer-section h3 {
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 30px;
}
.footer-section h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
}
.footer-section p {
    font-size: 16px;
    line-height: 28px;
}
.footer-section .footer-nav ul {
    margin: 0;
    padding: 0;
}
.footer-section .footer-nav ul li {
    list-style: none;
    margin-bottom: 10px;
}
.footer-section .footer-nav ul li a {
    display: inline-block;
    padding: 5px 0;
}
.footer-section .footer-nav ul li:first-child a {
    padding-top: 0;
}
.footer-section .footer-top {
    padding-top: 80px;
    padding-bottom: 15px;
}
.footer-section .footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 50px;
    padding-bottom: 40px;
}
.footer-section .copyright p {
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
}
.footer-logo {
    margin-top: 11px;
    margin-bottom: 30px;
}
.footer-logo a {
    display: inline-block;
}
.footer-logo img {
    display: block;
    margin: 0;
}
.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    padding: 12px 20px;
}
.newsletter-form .input-group .form-control {
    background: none;
    border: 0 none;
    box-shadow: none;
    color: #fff;
    outline: none;
    min-height: auto;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
}
.newsletter-form .input-group .btn-gradient {
    border-radius: 50px !important;
    font-weight: 400;
    max-width: 136px;
    min-height: auto;
    height: 40px;
    padding: 0;
}
.form-container .newsletter-form .form-control::placeholder {
    color: #fff;
    font-size: 16px;
    opacity: 1;
}
.form-container .newsletter-form .form-control::-moz-placeholder {
    color: #fff;
    font-size: 16px;
}
.form-container .newsletter-form .form-control::-webkit-input-placeholder {
    color: #fff;
    font-size: 16px;
}
.form-container .newsletter-form .form-control::-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
}

/*===== PAGE BANNER =====*/
.page-banner {
    background: linear-gradient(180deg, #ACC9EE 45.81%, rgba(193, 220, 250, 0) 100%);
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.page-banner:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 83.65%);
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -1px;
    height: 200px;
    width: 100%;
    z-index: 2;
}
.page-banner-pic {
    height: 100%;
    position: relative;
    z-index: 1;
}
.page-banner-pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.page-banner-heading * {
    color: #343C44;
}
.page-banner-heading {
    color: #343C44;
    text-align: center;
    position: absolute;
    top: 20%;
    left: 0;
    min-height: 300px;
    height: 70%;
    width: 100%;
    z-index: 3;
}
.page-banner-heading h1 {
    font-weight: 700;
    font-size: 82px;
    line-height: normal;
    margin-bottom: 30px;
    color: #fff;
}
.page-banner-heading h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}


/*===== HOMESLIDER =====*/
.homeslider-section {
    position: relative;
}
.homeslider-section:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 83.65%);
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -1px;
    height: 200px;
    width: 100%;
    z-index: 2;
}
.homeslider-section .carousel {
    z-index: 1;
}
.homeslider-section .carousel-item {
    height: 100%;
}
.homeslider-section .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.homeslider-section .carousel-item .carousel-caption {
    top: 20%;
}
.homeslider-section .carousel-item .carousel-caption h1 {
    color: #fff;
    font-weight: 700;
    font-size: 82px;
    line-height: normal;
    margin-bottom: 3%;
}
.homeslider-section .carousel-item .carousel-caption h3 {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    margin: 0;
}

/*===== HOME FEATURED SERVICE =====*/
.featured-service-section {
    padding-top: 6%;
    padding-bottom: 8%;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0;
}
.service-item-pic {
    margin-right: 24px;
}
.service-item-text h3 {
    color: #081323;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
}
.service-item-text p {
    color: #828282;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    margin: 0;
}

/*===== HOME FEATURED CATEGORIES =====*/
.featured-categories-section {
    margin-bottom: 10%;
}
.featured-categories-section h2 {
    font-weight: 600;
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 4%;
}
.category-item {
    background: rgba(221, 218, 218, 0.25);
    border-radius: 20px;
    margin: 0 7%;
    padding: 5% 7%;
    position: relative;
    min-height: 240px;
}
.category-item:after {
    content: '';
    opacity: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #00C4FF 0.04%, #FBD101 100.14%);
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}
.category-icon {
    position: relative;
    z-index: 2;
}
.category-icon img {
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    height: 80px;
    width: auto;
}
.category-title {
    margin: 15px 0;
    position: relative;
    z-index: 2;
}
.category-title h3 {
    color: #333;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    margin: 0;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.category-cta {
    margin-bottom: 10%;
    position: relative;
    z-index: 2;
}
.category-cta a {
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.category-cta a:hover {
    color: #fff;
    text-decoration: none;
}
.category-cta img {
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.category-item:hover:after {
    opacity: 1;
}
.category-item:hover .category-icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.category-item:hover .category-title h3 {
    color: #fff;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.category-item:hover .category-cta a {
    color: #fff;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.category-item:hover .category-cta img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

/*===== HOME FEATURED CATEGORIES CAROUSEL =====*/
#featCategories {
    margin-bottom: 50px;
}
#featCategories .f-carousel__slide {
    width: 25%;
}


/*===== HOME FEATURED NEWS =====*/
.featured-news-section {
    margin-top: 50px;
    margin-bottom: 50px;
}
.featured-news-section h2 {
    font-weight: 600;
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 25px;
}
.featured-news-section h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 35px;
}

.featured-cluster-section {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.65), 
        rgba(0, 0, 0, 0.65)
      ), url(../img/cluster_home_background.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px;
}
.featured-cluster-section h2 {
    font-weight: 600;
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 25px;
    color: #FFFFFF;
}
.featured-cluster-section h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 35px;
    color: #FFFFFF;
}
.culter-item {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin-bottom: 8%;
    margin-left: 15px;
    margin-right: 15px;
}
.culter-item-inner-wrap {
    padding: 30px;
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e);  
    text-align: center;
}
.culter-title {
    margin: 35px 0;
    height: calc(100vh / 100 * 15);
}
.culter-title h4 {
    color: #FFF;
    font-weight: 700;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
}
.culter-title label {
    color: #FFF;
    font-size: 18px;
    text-align: center;
}
.culter-readmore {
    margin-bottom: 20px;
}

.btn-category {
    background-color: #fff;
}
.btn-category:hover {
    background-color: #fff;
}

.culter-articles-thumbnail img {
    display: block;
    width: 100%;
}
.culter-articles-thumbnail {
    max-width: 100%;
    height: 350px;
    max-height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.news-item {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin-bottom: 8%;
    margin-left: 15px;
    margin-right: 15px;
    padding: 28px;
}
.news-item-inner-wrap {
    padding: 0 30px;
}
.news-thumbnail {
    border-radius: 10px;
    margin-bottom: 28px;
}
.news-thumbnail img {
    border-radius: 10px;
}
.news-meta {
      display: grid;
    align-items: center;
    flex-direction: row;
    /* grid-auto-columns: 1fr 1fr; */
    grid-template-columns: 1fr 1fr;
}
.news-meta p {
    color: #7d7d7d;
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20ch;
    padding-right: 10px;
}
/* .news-category {
    margin-right: 30px;
} */
.news-title {
    margin: 35px 0;
    height: calc(100vh / 100 * 15);
}
.news-title h4 {
    color: #000;
    font-weight: 700;
    font-size: 22px;
    line-height: 36px;
    margin: 0;
        margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-readmore {
    margin-bottom: 20px;
}
.news-readmore .btn {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    max-width: 170px;
}


/*===== PROFILE PAGE =====*/
.page-profile .header-section .navbar-nav .nav-item .nav-link.active, .page-profile .header-section .navbar-nav .nav-item .nav-link:hover {
    color: #333;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
    text-decoration: none;
}
.page-profile .header-section .btn-login-register .header-btn-login {
    color: #333;
}
.page-profile .header-section .btn-login-register .header-btn-login:hover {
    color: #fff;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
}
.page-profile .header-section .btn-login-register .header-btn-register {
    background: #fff;
}
.page-profile .header-section .btn-login-register .header-btn-register span {
    background: linear-gradient(90deg, #00C4FF 22.27%, #FBD101 84.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-profile .header-section .btn-login-register .header-btn-register:hover span {
    color: #333;
    background: none;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
    text-decoration: none;
}
.profile-header {
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    min-height: 199px;
    display: flex;
    align-items: end;
    padding-bottom: 5%;
    position: relative;
    z-index: 1;
}
.profile-header h3 {
    color: #333;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
}
.profile-verification-status, .profile-approval-status {
    padding-top: 17%;
    text-align: center;
}
.profile-verification-status-verified, .profile-verification-status-notverified, .profile-approval-status-approve, .profile-approval-status-waitingapprove, .profile-approval-status-reject {
    background: #808080;
    border-radius: 20px;
    color: #fff;
    display: block;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 24px;
    margin: 0 auto 23px;
    max-width: 180px;
    padding: 8px 15px;
    text-align: center;
}
.profile-verification-status-verified, .profile-approval-status-approve {
    background: #34A853;
}
.profile-approval-status-waitingapprove {
    max-width: 260px;
}
.profile-approval-status-reject {
    background: #FF0000;
}
.overlap-wrapper {
    margin-top: -90px;
}
.profile-header-picture-wrap {
    width: 225px;
    height: 225px;
    margin: 0 auto 12px;
    position: relative;
    border-radius: 50%;
    border: 15px solid #fff;
}
#wrap_img_profile {
    margin: 0 auto 12px;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: black;
}
#remove_img_profile {
    background: url(../img/icon-close-white.png) no-repeat center center transparent;
    position: absolute;
    right: -25px;
    z-index: 100;
    top: 0px;
}
#profile_header_photo_upload {
    background: url(../img/icon-camera.png) no-repeat center center transparent;
    height: 60px;
    width: 60px;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 999;
}
.profile-header-picture-wrap.show-preview {
    border-radius: 50%;
}
.profile-header-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.profile-header-photo.show {
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 0;
}
.profile-header-picture #profile_header_photo {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}
.profile-header-fullname {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.form-fullname {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 100%;
}
#fullname {
    background: none;
    border: 0 none;
    border-bottom: 1px solid transparent;
    color: #333;
    display: block;
    margin: 0 auto;
    padding: 0 15px;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    outline: none;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#fullname:focus, #fullname:focus-visible {
    border-bottom: 1px solid #fff;
}
#fullname:focus[readonly] {
    border-bottom: 1px solid transparent;
}
.form-container #fullname::placeholder {
    color: #ccc;
    font-size: 36px;
    opacity: 1;
}
.form-container #fullname::-moz-placeholder {
    color: #ccc;
    font-size: 36px;
}
.form-container #fullname::-webkit-input-placeholder {
    color: #ccc;
    font-size: 36px;
}
.form-container #fullname::-ms-input-placeholder {
    color: #ccc;
    font-size: 36px;
}
#editfullname {
    border: 0 none;
    cursor: pointer;
    display: block;
    height: 25px;
    width: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 12px;
}
#editfullname img {
    display: block;
    border: 0 none;
    margin: 0;
    height: auto;
    width: 100%;
}
#savefullname {
    background: url(../img/icon-right-arrow.png) no-repeat center center transparent;
    background-size: contain;
    border: 0 none;
    display: none;
    height: 22px;
    width: 25px;
    position: absolute;
    left: auto;
    right: 0;
    top: 12px;
}
.profile-content-section {
    padding-top: 6.25em;
    padding-bottom: 5em;
}
.profile-content-section > .container {
    max-width: 1280px;
}
.profile-content-section h1 {
    font-weight: 600;
    font-size: 55px;
    line-height: 65px;
    text-align: center;
}
.profile-content-item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    margin: 0;
}
.profile-content-heading .divider {
    margin-top: -10px;
}
.profile-content-heading .straight-line {
    background: #AFA2C3;
    display: block;
    height: 1px;
    width: 100%;
}
.profile-content-heading .btn-edit {
    background: none;
    border: 0 none;
    margin: 0;
    padding: 0;
}
.profile-content-body > .row {
    padding-bottom: 25px;
}
.profile-content-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
}
.profile-content-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
#profile-content-idcardimg, 
#wrap_img_family,
#wrap_img_member_house_worker {
    max-height: 200px;
    max-width: 300px;
}
#profile-content-idcardimg img,
#wrap_img_family img,
#wrap_img_member_house_worker img{
    width: auto;
    height: 100%;
    max-height: 200px;
    max-width: 100%;
}
.add-new-unit .btn, .add-new-vehicle .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: none;
    width: auto;
}
.add-new-unit .btn img, .add-new-vehicle .btn img {
    display: block;
    margin-right: 20px;
    height: 70px;
    width: 70px;
}
.add-new-unit p, .add-new-vehicle p {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin: 0;
    text-align: left;
}
.add-new-unit span, .add-new-vehicle span {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
}
/* PROFILE PAGE REVAMP
-----------------------------------*/
.profile-top-section {
    height: auto;
}
.page-banner.profile-banner {
    height: 60vh;
}
.page-banner.profile-banner:after {
    display: none;
}
#profiletabs {
    margin-bottom: 6em;
}
#profiletabs .nav-tabs {
    border: 0 none;
    margin-left: -20px;
    margin-right: -20px;
}
#profiletabs .nav-tabs .nav-item {
    flex: 1;
    padding: 0 20px;
}
#profiletabs .nav-tabs .nav-link {
    border: 1px solid #D9D9D9;
    border-radius: 0;
    padding: 40px 15px;
}
#profiletabs .nav-tabs .nav-link img {
    display: block;
    margin: 0 auto 30px;
    height: 122px;
    width: 122px;
    object-fit: cover;
}
#profiletabs .nav-tabs .nav-link h4 {
    color: #464E5F;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}
#profiletabs .nav-tabs .nav-link:hover {
    background: #FFF;
}
#profiletabs .nav-tabs .nav-link.active {
    background: #FFF;
    border: 1px solid #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}
#profiletabs .nav-tabs .nav-link.active h4 {
    font-weight: 600;
}
#profiletabscontent {
    padding-left: 15px;
    padding-right: 15px;
}
#unitstabs {
    margin-bottom: 5em;
}
#unitstabs ul.nav-tabs {
    border-bottom: 1px solid #B8C8DB;
}
#unitstabs ul.nav-tabs li.nav-item .nav-link {
    background: none;
    border: 0 none;
    border-bottom: 4px solid transparent;
    margin-right: 3px;
    padding: 0 0 4px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}
#unitstabs ul.nav-tabs li.nav-item .nav-link span {
    background: none;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    color: #7D7D7D;
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    padding: 10px 20px;
    min-width: 125px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}
#unitstabs ul.nav-tabs li.nav-item .nav-link:hover, #unitstabs ul.nav-tabs li.nav-item .nav-link.active {
    border-bottom: 4px solid #4ABBEC;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}
#unitstabs ul.nav-tabs li.nav-item .nav-link:hover span, #unitstabs ul.nav-tabs li.nav-item .nav-link.active span {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e);
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}


/*===== BOOKING FACILITY PAGE =====*/
.booking-facility-general {
    text-align: center;
}
.booking-facility-banner {
    background: linear-gradient(180deg, #ACC9EE 45.81%, rgba(193, 220, 250, 0) 100%);
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.booking-facility-banner:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 83.65%);
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -1px;
    height: 200px;
    width: 100%;
    z-index: 2;
}
.booking-facility-type {
    padding-top: 6%;
    /* padding-bottom: 3%; */
    text-align: center;
}
.booking-facility-type-grid {
    margin-top: 5%;
}
.booking-facility-type-item {
    background-color: #F3F6F9;
    background-image: url(../img/facility-type-bg.png);
    background-position: left top;
    background-repeat: no-repeat;
    border-radius: 20px;
    height: 100%;
    margin: 0;
    padding: 35px;
    position: relative;
}
.booking-facility-type-picture {
    margin-bottom: 40px;
}
.f-carousel__dots {
    bottom: 0;
}
.f-carousel__dot {
    border: 1px solid #fff;
}
.f-carousel__nav .f-button {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    color: #000;
}
.f-carousel__nav .f-button path {
    color: #000 !important;
}
.booking-facility-type-item img {
    display: block;
    margin: 0;
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.booking-facility-type-text {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    width: 100%;
    margin-bottom: 110px;
}
.booking-facility-type-item h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.booking-facility-type-item small {
    font-size: 13px;
}
.booking-facility-type-desc {
    display: block;
    height: 55px;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
}
.booking-facility-type-item p, .booking-facility-type-desc p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 15px;
}
.booking-facility-type-text .booking_fee {
    position: absolute;
    bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}
.booking-facility-type-text span {
    display: block;
    color: #25C0FF;
    font-weight: 700;
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 30px;
}
.booking-facility-type-item .btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    padding: 10px;
    position: absolute;
    width: calc(100% - 70px);
    left: 35px;
    bottom: 0;
    margin-bottom: 35px;
}
.booking-facility-type-item:hover * {
    /*color: #fff;*/
}
.booking-facility-type-item:hover {
    /*background: linear-gradient(180deg, #92b786 0.05%, #3e643e 100%);*/
}
.booking-facility-type-item:hover span {
    /*color: #000;*/
}
.booking-facility-type-item:hover .btn {
    /*background: #fff;*/
}
.booking-facility-type-item:hover .btn span {
    color: #fff;
    /*background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
}
.booking-facility-type-item:hover .is-current .f-carousel__dot {
    border: 1px solid #000;
}
.booking-facility-form .input-group {
    align-items: center;
}
.booking-facility-form .input-group .form-control {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    margin-right: 16px;
}
.booking-facility-form .input-group .input-group-text {
    background:#34A853;
    border:1px solid #AFA2C3;
    color:#fff;
    min-height: 56px;
}
.booking-facility-form .input-group .input-group-customtext {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    width: 125px;
}
.booking-facility-form .form-container .btn-gradient {
    box-shadow: 0px 4px 19px rgba(119, 147, 65, 0.3);
}
.booking-facility-list {
    padding-bottom: 6%;
}
.form-cancelbooking .modal-body-wrap {
    display: block;
    margin: 0 auto;
    max-width: 370px;
    width: 100%;
}
#bookingfacility .modal-dialog {
    max-width: 1280px;
}
#bookingfacility .modal-header {
    border: 0 none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 25px;
    right: 40px;
    z-index: 2;
}
#bookingfacility .modal-body {
    padding: 40px 40px;
}
#bookingfacility h5 {
    border-bottom: 1px solid #D9D9D9;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
}
.bookingfacility-desc {
    margin-bottom: 40px;
}
.bookingfacility-desc img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.bookingfacility-desc-wrap {
    -webkit-box-shadow: 1px 2px 2px 0px rgba(0,0,0,0.1);
    box-shadow: 1px 2px 2px 0px rgba(0,0,0,0.1);
    height: 150px;
    overflow-y: auto;
    padding-right: 10px;
}
.bookingfacility-desc-wrap br {
    display: block;
    clear: both;
    content: '';
    height: 1rem;
    width: 100%;
    overflow: hidden;
}

/*===== BOOKING FACILITY DETAIL PAGE =====*/
.booking-facility-detail-section {
    padding-top: 6%;
    padding-bottom: 6%;
}
.booking-facility-detail-section-heading {
    padding: 0 105px;
    position: relative;
    text-align: center;
}
.booking-facility-detail-section .btn-back {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
}
.booking-facility-detail-section .btn-back span {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 50px;
    width: 50px;
}
.booking-facility-detail-section .btn-back:hover {
    text-decoration: none;
}
.booking-facility-detail-section .btn-back:hover span {
    background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
}
.booking-facility-detail-section .btn-back:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.booking-facility-detail-content {
    display: block;
    margin: 5% auto 0;
    max-width: 814px;
}
.booking-facility-detail-content > .row {
    padding: 18px 0;
}
.booking-facility-detail-content > .row > [class*='col-']:first-child {
    display: flex;
    align-items: center;
    justify-content: end;
}
.booking-facility-detail-content-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: right;
}
.booking-facility-detail-content-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
.deposit-transfer-picture {
    background: #D9D9D9;
    border-radius: 20px;
    height: 100%;
    /* padding: 3%; */
}
.deposit-transfer-picture-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    /* width: 100%;
    height: 190px; */
    width: fit-content !important;
    height: fit-content;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.deposit-transfer-photo {
    width: 100%;
}
.deposit-transfer-photo.show {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.deposit-transfer-picture #deposit_transfer_photo {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}
.booking-facility-detail-cancel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8%;
}
.booking-facility-detail-cancel > span {
    background: #B5B5B5;
    display: block;
    height: 1px;
    width: 100%;
}
.booking-facility-detail-cancel .btn {
    /*background: linear-gradient(90.31deg, #F4991D 0.32%, #FBD101 99.92%);*/
    border: 0 none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.02em;
    margin: 0 30px;
}
.booking-facility-detail-cancel .btn span {
    clear: both;
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    padding-top: 5px;
}

/*===== IPL MAINTENANCE PAGE =====*/
.ipl-maintenance-form {
    background: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(251,209,1,0.40) 35%, rgba(37,192,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(251,209,1,0.40) 35%,rgba(37,192,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(251,209,1,0.40) 35%,rgba(37,192,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#25c0ff',GradientType=0 );

    padding-top: 7%;
    padding-bottom: 9%;
    text-align: center;
    min-height: 800px;
}
.ipl-maintenance-form h2 {
    margin-bottom: 4%;
}
.ipl-maintenance-form .form-container {
    /* background: #FFFFFF; */
    /* box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08); */
    border-radius: 40px;
    display: block;
    margin: 0 auto;
    max-width: 540px;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: left;
}
.ipl-maintenance-form .form-container .btn-gradient {
    box-shadow: 0px 4px 19px rgba(119, 147, 65, 0.3);
}

/*===== IPL MAINTENANCE DETAIL =====*/
.ipl-maintenance-detail {
    padding-top: 7%;
    padding-bottom: 7%;
}
.ipl-maintenance-detail p {
    font-weight: 600;
    margin: 0;
}
.ipl-maintenance-detail-wrap {
    display: block;
    margin: 0 auto;
    max-width: 625px;
    width: 100%;
}
.ipl-maintenance-detail-wrap .row {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
}
.ipl-maintenance-detail-havebg {
    background: #EAF9FF;
    background: #FFF;
    border-bottom: 1px solid #B5B5B5;
    margin: 0 auto 5%;
}
.ipl-maintenance-detail-havebg > .row {
    border-top: 1px solid #B5B5B5;
}

/*===== NEWS PAGE =====*/
.news-banner-heading,
.about-heading {
    top: 35%;
    height: 55%;
}
.news-list-heading {
    margin-top: 6%;
    margin-bottom: 5%;
}
.news-articles-item {
    background: #F5F5F5;
    margin-bottom: 40px;
}
.news-articles-thumbnail img {
    display: block;
    width: 100%;
}
.news-articles-thumbnail {
    max-width: 100%;
    height: 350px;
    max-height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.news-articles-item-inner {
    padding: 8% 9%;
}
.news-articles-publishdate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.news-articles-publishdate img {
    display: block;
    margin-right: 8px;
}
.news-articles-publishdate p {
    color: #797979;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin: 0;
}
.news-articles-title {
    margin-bottom: 10px;
    min-height: 80px;
}
.news-articles-title h4, 
.promo_events-title h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-articles-excerpt, .news-articles-excerpt p, .news-articles-excerpt span {
    margin-bottom: 40px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #3E334E;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.news-articles-excerpt p, .news-articles-excerpt span {
    margin: 0;
}
.news-articles-excerpt span img {
    display: block;
    height: auto !important;
    width: auto !important;
    max-width: 100%;
}
.news-articles-readmore .btn {
    max-width: 175px;
    min-height: 58px;
    align-items: center;
    display: flex;
    justify-content: center;
}

/*===== SIDEBAR =====*/
.sidebar-item {
    border: 2px solid #ccc;
    margin-bottom: 30px;
}
.sidebar-heading {
    padding: 35px 35px 0 35px;
}
.sidebar-heading h4 {
    border-bottom: 1px solid #C4C4C4;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    padding-bottom: 30px;
}
.sidebar-body {
    padding: 35px;
}
.sidebar-heading h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}


/*===== NEWS SIDEBAR =====*/
.form-search .input-group .form-control {
    border-color: #C4C4C4;
    border: 0 none;
    border-radius: 0;
    font-size: 24px;
    line-height: normal;
    padding: 10px 30px;
}
.form-container .form-search .form-control::placeholder {
    color: #C4C4C4;
    font-size: 24px;
    opacity: 1;
}
.form-container .form-search .form-control::-moz-placeholder {
    color: #C4C4C4;
    font-size: 24px;
}
.form-container .form-search .form-control::-webkit-input-placeholder {
    color: #C4C4C4;
    font-size: 24px;
}
.form-container .form-search .form-control::-ms-input-placeholder {
    color: #C4C4C4;
    font-size: 24px;
}
.form-search .input-group .btn {
    border-radius: 0;
    max-width: 90px;
    min-height: 80px;
}
.form-search .input-group .btn:hover img {
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
}

.news-category-item a {
    border-top: 1px solid #C4C4C4;
    color: #797979 !important;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none !important;
}
.news-category-item:first-child a {
    border-top: 0 none;
    padding-top: 0;
}
.news-category-item:last-child a {
    padding-bottom: 15px;
}
.news-category-item span {
    border-bottom: 2px solid transparent;
}
.news-category-item a:hover span {
    border-bottom: 2px solid #797979;
}

.recent-news-item {
    padding: 20px 0;
}
.recent-news-item:first-child {
    padding-top: 0;
}
.recent-news-thumbnail {
    height: 100%;
    width: 100%;
}
.recent-news-thumbnail img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 60px;
}
.recent-news-publishdate {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.recent-news-publishdate img {
    display: block;
    margin-right: 8px;
}
.recent-news-publishdate p {
    color: #797979;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}
.recent-news-title a, .recent-news-title p {
    color: #3E334E !important;
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    text-decoration: none !important;

}
.recent-news-title span {
        margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


/*===== NEWS DETAIL PAGE =====*/
.news-detail-section {
    margin-top: 6%;
    margin-bottom: 2%;
}
.news-detail-heading {
    margin-bottom: 40px;
}
.news-detail-heading h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    margin: 0;
}
.news-detail-content {
    color: #3e334e;
    font-family: work sans,sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.news-detail-content p {
    margin-bottom: 30px;
}
.news-detail-content ul, .news-detail-content ol {
    margin-bottom: 30px;
}
.news-detail-content li {
    margin-bottom: 10px;
}
.news-detail-content a {
    text-decoration: underline;
}
.news-detail-content img {
    display: block;
    max-width: 724.59px;
    width: 100% !important;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
}
.news-detail-content br {
    display: block;
    clear: both;
    content: '';
    height: 20px;
    width: 100%;
    overflow: hidden;
}
.news-detail-feat-img .news-detail-picture {
    display: block;
    margin: 0 auto 40px;
    max-width: 100%;
    width : auto;
    height: auto;
}
.prev-next-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 9% 0;
}
.prev-post a, .next-post a {
    color: #7D7D7D !important;
    font-weight: 700;
    font-size: 26px;
    line-height: 28px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prev-post a img, .next-post a img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.prev-post a img {
    margin-right: 20px;
}
.next-post a img {
    margin-left: 20px;
}
.prev-post a:hover img {
    margin-right: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.next-post a:hover img {
    margin-left: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
/*===== PAGINATION =====*/
.pagination-container {
    margin: 1% 0 1%;
}
.pagination-container .pagination .page-item {
    margin: 0 10px;
}
.pagination-container .pagination .page-item .page-link {
    background: none;
    border: 2px solid #C4C4C4;
    border-radius: 50%;
    height: 51px;
    width: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A4ACA7;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    text-decoration: underline;
}
.pagination-container .pagination .page-item img {
    height: auto;
    width: 14px;
}
.pagination-container .pagination .page-item .page-link.active, .pagination-container .pagination .page-item .page-link:hover {
    background: linear-gradient(180deg, #92b786 0.05%, #3e643e 100%);
    border: 0 none;
    color: #fff;
}
.pagination-container .pagination .page-item .page-link:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/*===== SIDEBAR =====*/
.sidebar-item {
    border: 2px solid #ccc;
    margin-bottom: 30px;
}
.sidebar-heading {
    padding: 35px 35px 0 35px;
}
.sidebar-heading h4 {
    border-bottom: 1px solid #C4C4C4;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    padding-bottom: 30px;
}


/*===== GUEST INVITATION PAGE =====*/
.guest-invitation-form {
    background: linear-gradient(0.69deg, #EAF9FF 0.32%, rgba(234, 249, 255, 0) 99.13%);
    padding-top: 6%;
    padding-bottom: 8%;
    text-align: center;
}
.guest-invitation-form .form-container {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1024px;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: left;
}
.guest-list {
    padding-top: 5%;
    padding-bottom: 7%;
}

/*===== GUEST INVITATION PAGE =====*/
.guest-invitation-form {
    background: linear-gradient(0.69deg, #EAF9FF 0.32%, rgba(234, 249, 255, 0) 99.13%);
    padding-top: 6%;
    padding-bottom: 8%;
    text-align: center;
}
.guest-invitation-form .form-container {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1024px;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: left;
}
.guest-list {
    padding-top: 5%;
    padding-bottom: 7%;
}


/*===== GUEST DETAIL PAGE =====*/
.guest-detail-section {
    padding-top: 6%;
    padding-bottom: 8%;
}
.guest-detail-section-heading {
    padding: 0 105px;
    position: relative;
    text-align: center;
}
.guest-detail-section .btn-back {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
}
.guest-detail-section .btn-back span {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 50px;
    width: 50px;
}
.guest-detail-section .btn-back:hover {
    text-decoration: none;
}
.guest-detail-section .btn-back:hover span {
    background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
}
.guest-detail-section .btn-back:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.guest-detail-content {
    display: block;
    margin: 5% auto 0;
    max-width: 614px;
}
.guest-detail-content > .row {
    padding: 18px 0;
}
.guest-detail-content > .row > [class*='col-']:first-child {
    display: flex;
    align-items: center;
    justify-content: end;
}
.guest-detail-content-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: right;
}
.guest-detail-content-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
.form-search {
    margin-block-end: auto;
}



/*===== WORKING PERMIT PAGE =====*/
.working-permit-detail-content-value img {
        display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 100%;
    height: 225px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.working-permit-form {
    background: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(251,209,1,0.40) 35%, rgba(37,192,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(251,209,1,0.40) 35%,rgba(37,192,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(251,209,1,0.40) 35%,rgba(37,192,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#25c0ff',GradientType=0 );
    padding-top: 7%;
    padding-bottom: 9%;
    text-align: center;
    min-height: 800px;
}
.working-permit-form h2 {
    margin-bottom: 4%;
}
.working-permit-form .form-container {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    display: block;
    margin: 0 auto;
    max-width: 990px;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: left;
}
.working-permit .form-container .btn-gradient {
    box-shadow: 0px 4px 19px rgba(119, 147, 65, 0.3);
}
.workingpermit-picture-box {
    background: #fff;
    border: 1px solid #AFA2C3;
    border-radius: 8px;
    padding: 16px;
    height: 291px;
}
.workingpermit-picture-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
}
.workingpermit-picture-container img.working-permit-picture {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: auto;
}
.workingpermit-picture-container img.working-permit-picture.show {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: auto;
}
.workingpermit-picture-container input#working_premit_image {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}
.form-cancel_workingpermit .modal-body-wrap {
    display: block;
    margin: 0 auto;
    max-width: 370px;
    width: 100%;
}
.working-permit-list {
    padding-top: 7%;
    padding-bottom: 7%;
}


/*===== WORKING PERMIT DETAIL PAGE =====*/
.working-permit-detail-section {
    padding-top: 6%;
    padding-bottom: 8%;
}
.working-permit-detail-section-heading {
    padding: 0 105px;
    position: relative;
    text-align: center;
}
.working-permit-detail-section .btn-back {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
}
.working-permit-detail-section .btn-back span {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 50px;
    width: 50px;
}
.working-permit-detail-section .btn-back:hover {
    text-decoration: none;
}
.working-permit-detail-section .btn-back:hover span {
    background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
}
.working-permit-detail-section .btn-back:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.working-permit-detail-content {
    display: block;
    margin: 5% auto 0;
    max-width: 767px;
}
.working-permit-detail-content > .row {
    padding: 18px 0;
}
.working-permit-detail-content > .row > [class*='col-']:first-child {
    display: flex;
    justify-content: end;
}
.working-permit-detail-content-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: right;
}
.working-permit-detail-content-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
.btn-rules_regulation {
    background: none;
    border: 0 none;
    display: block;
    color: red !important;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
    padding: 0;
    text-align: left;
    height: auto;
    min-height: auto;
    min-width: auto;
    max-width: none;
    width: auto;
}
.btn-rules_regulation span {
    display: inline-block;
    margin-left: 5px;
}
textarea#vendor_address {
    min-height: 170px;
}

.navbar-brand img {
    height: 88px;
    width: auto;
    max-width: 98px;
}
.al-logo img {
    /* height: 73px;
    width: 333px;
    object-fit: contain; */
    width: auto;
    /* max-width: 333px; */
}
.error_msg {
    color: rgb(245, 111, 111);
}
.company-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*===== ABOUT PAGE =====*/
.about-content {
    padding-top: 7%;
    padding-bottom: 7%;
}

/* spinner */
.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-hourglass 1.2s infinite;
  }
  @keyframes lds-hourglass {
    0% {
      transform: rotate(0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
      transform: rotate(900deg);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
      transform: rotate(1800deg);
    }
  }
  #overlay_ {
      position: fixed; /* Sit on top of the page content */
      display: none; /* Hidden by default */
      width: 100%; /* Full width (cover the whole page) */
      height: 100%; /* Full height (cover the whole page) */
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.5); /* Black background with opacity */
      z-index: 9999999; /* Specify a stack order in case you're using a different order for other elements */
      cursor: pointer; /* Add a pointer on hover */
  }
  /* spinner */


/*===== LOADING/UNLOADING PAGE =====*/
.loading-unloading-banner-pic img {
    object-position: top;
}
.loading-unloading-heading {
    top: 30%;
    height: auto;
}
.loading-unloading-form .form-container {
    max-width: 1200px;
}
.load-item-list .btn {
    height: 52px;
    width: 52px;
}
.loading-unloading-detail-section {
    padding-top: 6%;
    padding-bottom: 8%;
}
.loading-unloading-detail-section .btn-back {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
}
.loading-unloading-detail-section .btn-back span {
    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 50px;
    width: 50px;
}
.loading-unloading-detail-section .btn-back:hover {
    text-decoration: none;
}
.loading-unloading-detail-section .btn-back:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.loading-unloading-detail-section .btn-back:hover span {
    background: linear-gradient(90deg, #92b786 0%, #3e643e 100%);
}
.loading-unloading-detail-section-heading {
    padding: 0 105px;
    position: relative;
    text-align: center;
}
.loading-unloading-detail-content {
    display: block;
    margin: 5% auto 0;
    max-width: 890px;
}
.loading-unloading-detail-table-wrap {
    display: block;
    margin: 5% auto 0;
    max-width: 945px;
}
.loading-unloading-detail-content > .row {
    padding: 18px 0;
}
.loading-unloading-detail-content > .row > [class*='col-']:first-child {
    display: flex;
    align-items: flex-start;
    justify-content: end;
}
.loading-unloading-detail-content-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding-right: 50px;
    text-align: right;
}
.loading-unloading-detail-content-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}
.loading-unloading-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8%;
}
.loading-unloading-edit > span {
    background: #B5B5B5;
    display: block;
    height: 1px;
    width: 160px;
}
.loading-unloading-edit .btn {
    /*background: linear-gradient(90deg, #00C4FF 0.04%, #FBD101 100.14%);*/
    border: 0 none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.02em;
    margin: 0 30px;
}
.loading-unloading-edit .btn span {
    clear: both;
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    padding-top: 5px;
}
.loading-unloading-detail-table-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.loading-unloading-detail-table-heading p {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.loading-unloading-detail-table-heading-group {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.loading-unloading-detail-table-heading-group span {
    background: #fff;
    border: 1px solid #C4C4C4;
    border-radius: 7px;
    color: #4F4F4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    height: 52px;
    min-width: 150px;
    margin-right: 25px;
    padding: 4px 15px;
}
.loading-unloading-detail-table-content {
    background: #F2FBFF;
    padding-bottom: 20px;
}
.loading-unloading-detail-table-content table {
    background: #F2FBFF;
    border: 0 none;
    border-top: 1px solid #7D7D7D;
    margin-bottom: 0;
}
.loading-unloading-detail-table-content table th, .loading-unloading-detail-table-content table td {
    background: #BDECFF;
    border: 0 none;
    color: #3E334E;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    height: auto;
    padding: 15px 20px;
    text-align: left;
    text-transform: none;
    vertical-align: middle;
}
.loading-unloading-detail-table-content table td {
    background: none;
    font-weight: 400;
    text-transform: none;
    vertical-align: inherit;
}

/*===== UTILITY PAGE =====*/
.utility-heading {
    top: 35%;
    height: auto;
}
.utility-form {
    background: #EAF9FF;
    background: -moz-linear-gradient(top, #ffffff 0%, #eaf9ff 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%,#eaf9ff 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#eaf9ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaf9ff',GradientType=0 );
    padding-top: 7%;
    padding-bottom: 9%;
    text-align: center;
}
.utility-form .form-container {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    display: block;
    margin: 0 auto;
    max-width: 990px;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: left;
}
.utility-picture-box {
    background: #fff;
    border: 1px solid #AFA2C3;
    border-radius: 8px;
    padding: 16px;
    height: 169px;
}
.utility-picture-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.utility-picture-container img.utility-picture {
    display: block;
    margin: 0 auto;
    height: auto;
    width: auto;
}
.utility-picture-container input#utility_picture {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0 none;
    border-radius: 0;
    padding: 0;
}
.utility-picture-container img.utility-picture.show {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: auto;
}
.utility-list {
    padding-top: 7%;
    padding-bottom: 7%;
}
.utility-detail-section {
    padding-top: 6%;
    padding-bottom: 8%;
}
.utility-detail-section-heading {
    padding: 0 105px;
    position: relative;
    text-align: center;
}
.utility-detail-section .btn-back {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
}
.utility-detail-section .btn-back span {
    background: linear-gradient(90deg, #00C4FF 0.04%, #FBD101 100.14%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 50px;
    width: 50px;
}
.utility-detail-section .btn-back:hover {
    text-decoration: none;
}
.utility-detail-section .btn-back:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.utility-detail-section .btn-back:hover span {
    background: linear-gradient(90deg, #FBD101 0.04%, #00C4FF 100.14%);
}
.utility-detail-content {
    display: block;
    margin: 5% auto 0;
    max-width: 890px;
}
.utility-detail-content > .row {
    padding: 18px 0;
}
.utility-detail-content > .row > [class*='col-']:first-child {
    display: flex;
    align-items: center;
    justify-content: end;
}
.utility-detail-content-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding-right: 40px;
    text-align: right;
}
.utility-detail-content-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}

.btn-list {
    text-align: right;
    /*width: 75%;*/
    margin: auto;
    margin-bottom: 30px;
}

.btn-ticket {
    max-width: 803px;
}
.btn-permit {
    max-width: 990px;
}

.btn-guest {
    max-width: 1024px;
}

.ipl-maintenance-form .form-container {
    background: #FFFFFF;
    box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.08);
}

.ticket-upload-file-format {
    font-family: Work Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;

    font-family: Work Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;

}

.ticket__upload-item {
    width: 110px;
    height: 110px;
    top: 2000px;
    left: 771px;
    border: 1px;
    background-color: grey;
    border-radius: 8px;
}

.ticket__upload-item-wrap span,
.ticket__upload-btn-wrap .title_img {
    font-family: Work Sans !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 16px !important;
    letter-spacing: 0em !important;
    text-align: left !important;
    box-shadow: unset !important;
    color: black !important;
}

.ticket__upload {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    row-gap: 10px;
}

.ticket__upload-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
}

.ticket__upload-btn {
    width: 43px;
    height: 43px;
    top: 2033px;
    left: 937px;
    border-radius: 9px;
    background: #00C4FF;
    display: flex;
    align-items: center;
    justify-content: center;

}

.ticket__upload-btn span {
    font-family: Work Sans;
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0px 4px 19px 0px #7793414D;
}

.ipl-maintenance-form .form-container {
    max-width: 803px;
    padding-bottom: 58px;
    padding-right: 81px;
    padding-left: 81px;
}

.ticket__upload-btn-add button {
    /* font-family: Work Sans;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(90deg, #00C4FF 0%, #FBD101 100%);
    width: 636px;
    height: 67px;
    top: 2220px;
    left: 638px;
    border-radius: 10px;
    border: none; */

    background: -webkit-linear-gradient(#82a576,#3e643e);  
    background: -moz-linear-gradient(#82a576,#3e643e);  
    background: -o-linear-gradient(#82a576,#3e643e);  
    background: linear-gradient(#82a576,#3e643e);
    /* Replace with your desired colors */
    background-size: 100% 100%;
    border: none;
    width: 636px;
    height: 67px;
    top: 2220px;
    left: 638px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-position 0.5s ease-in-out;
}

.ticket__upload-btn-add button:hover {
    /* animation: rotate-colors 3s linear infinite; */
    /* background: red; */
    background-size: 150% 400%;
    background-position: 100% 50%;
}

.help-block{
    /*display: inline-block;*/
    margin-top: 5px;
    /*margin-bottom: 10px;*/
    color: #737373;
    font-size: 0.6em;
}

.form-group.has-error .help-block {
    color: #dd4b39;
}

.error-input {
    /*position: relative;*/
    background: #FF8383;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    /*margin-bottom: 5px;*/
    margin-top: 3px;
    display: inline-block;
}

@keyframes rotate-colors {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 50% 50%;
    }
}

.close {
    right: 0px;
    top: 0px;
    /* background-color: red; */
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: white;
    border-radius: 50%;
}

.close:hover {
    opacity: 1;
}

.close:before,
.close:after {
    position: absolute;
    left: 12px;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: #333;
    top: 5px;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

/* ticket */
.ticket-gallery {
    display: grid;
    grid-gap: 10px;
}

.ticket-gallery .picture-wrap{
    max-width: 24%;
    width: auto;
    max-height: 190px;
    height: auto;
    text-align: center;
    position: relative;
}

.ticket-gallery .picture-wrap img{
    max-width: 100%;
    max-height: 100%;
}

/*===== CLUSTER PAGE =====*/
.description-service-section {
    padding: 50px;
}

.cluster-wedget-rectangle {
    width: 300px;
    border-radius: 30px;
    background: rgba(211, 222, 212, 0.5);
}

.type-service-section .type-service-container {
    text-align: center;
}
.cluster-image-header {
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 83.65%);

}
.type-service-section {
    padding-bottom: 30px;
    padding-top: 30px;
}
.text-type-unit {
    padding-top: 50px;
    padding-bottom: 50px;
}
.description-type-unit {
    padding-bottom: 30px;
}
#featCluster {
    margin-bottom: 20px;
    margin-top: 20px;
}
#homeslider .carousel-items{
    overflow: hidden;
}
#homeslider .carousel-items img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#homeslider .carousel-caption {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    bottom: initial;
    transform: translateY(-50%);
    /* text-shadow: 4px 4px 5px #343C44; */
    background-color: #0000008a;
    border-radius: 20px;
    width: auto;
    margin: auto;
    padding: 35px 120px;
}
.text-shadow,
.page-banner-heading .col-sm-12 {
    /* text-shadow: 4px 4px 5px #343C44; */
    background-color: #0000008a;
    border-radius: 20px;
    width: fit-content;
    margin: auto;
    padding: 35px 120px;
}
.download-apk {
    text-align: center;
    width: 95%;
    max-width: 1000px;
    box-shadow: 0px 0px 20px 0px #0000001A;
    padding: 30px 50px;
    border-radius: 15px;
    margin: auto;
    border: 1px solid #3e643e;
    margin-top: 100px;
    background: url(../img/bg-download-apk-mobile.jpg) no-repeat center center;
    background-size: cover;
    height: 450px;
    display : flex;
    align-items : center;
}
#download-apk {
    padding-bottom: 100px;
}
.homeslider-section, #homebanner-carousel {
    height: 100vh;
}
#announcements h2{
    padding-bottom: 100px;
}
.wrap-content-ipl {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 45px;
    padding: 0 45px;
}

.box-content-ipl {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001A;
    border-radius: 9px;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}
#video-tutorial {
    text-align: center;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0px 0px 20px 0px #0000001A;
    padding: 50px;
    border-radius: 15px;
    margin: auto;
    border: 1px solid #3e643e;
    margin-bottom: 100px;
    background-size: cover;
    height: 450px;
    align-items : center;
    /* margin-left: -45px; */
}
#video-tutorial video, #download-apk video {
    max-height:350px;
    width: auto;
    box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.07);
}
#video-tutorial .row{
    align-items: center;
}
.download-apk .video {
    margin-left: -29px;
}
.download-apk .video label{
    margin-bottom: 15px;
    font-weight: 600;
}
#modal-panicbutton .modal-content, 
#modal-panicbutton .modal-dialog{
    width: 600px;
    max-width: 600px;
}
/*===== MEDIA QUERIES =====*/
@media only screen and (min-width: 1441px) {
    .page-banner.profile-banner {
        height: 70vh;
    }
}
@media only screen and (max-width: 1610px) {
    .container {
        max-width: 95%;
    }
}

@media only screen and (max-width: 1440px) {
    .header-section .navbar-nav .nav-item .nav-link {
        font-size: 20px;
        line-height: 26px;
        padding: 5px;
    }
    .header-section .btn-login-register .btn {
        font-size: 20px;
        line-height: 26px;
        min-height: auto;
    }
    .header-section .btn-login-register .header-btn-login {
        max-width: 80px;
    }
    .header-section .btn-login-register .header-btn-register {
        max-width: 125px;
    }
    .box-right-col-container {
        padding: 10% 15% 5%;
    }
}

@media only screen and (max-width: 1366px) {
    .profile-content-section > .container {
        max-width: 94%;
    }
}

@media only screen and (max-width: 1280px) {
    .booking-facility-list table {
        width: 1255px;
    }
    #bookingfacility .modal-dialog {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media only screen and (max-width: 1199.98px) {
    .header-section .navbar-collapse {
        background: rgba(86, 98, 112, 1);
        background: linear-gradient(93.99deg, #566270 0.51%, #283444 100%);
        padding: 10px 25px 25px;
    }
    .header-section .navbar-nav .nav-item {
        padding: 5px 0;
    }
    .header-section .navbar-nav .nav-item .nav-link {
        display: inline-block;
        padding: 10px 0;
    }
    .header-section .btn-login-register {
        text-align: center !important;
    }
    .box-wrapper {
        height: auto !important;
    }
    .page-register .box-right-col-container {
        padding-left: 25px;
        padding-right: 25px;
    }
    .box-left-col {
        height: auto !important;
        padding: 5%;
    }
    .box-right-col {
        height: auto !important;
    }
    .box-right-col-container {
        padding: 50px 25px 0;
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
    .page-signin .box-right-col-container {
        max-width: 500px;
    }
    .site-title-box {
        max-width: 90%;
    }
    .box-right-col-container .form-container {
        margin-top: 5%;
    }
}

@media only screen and (max-width: 1024px) {
    .news-articles-thumbnail {
        height: calc(80 * 350px / 100)
    }
    #featCategories .f-carousel__slide {
        width: 33.33%;
    }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media only screen and (max-width: 991.98px) {
    .news-articles-thumbnail {
        height: calc(80 * 350px / 100)
    }
    .profile-verification-status, .profile-approval-status {
        padding-top: 60px
    }
    .overlap-wrapper {
        margin-top: 60px;
    }
}

/* `md` applies to small devices (landscape phones, less than 769px) */
@media only screen and (max-width: 768px) {
    .news-articles-thumbnail {
        height: calc(80 * 350px / 100)
    }
    #featCategories .f-carousel__slide {
        width: 50%;
    }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media only screen and (max-width: 575.98px) {
    .booking-facility-detail-content-label {
        text-align: left;
    }
    .news-articles-title {
        min-height: unset;
    }
    .booking-facility-detail-content > .row > [class*='col-']:first-child {
        display: flex;
        align-items: center;
        justify-content: start;
    }
    #featCategories .f-carousel__slide {
        width: 100%;
    }
}

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


.notification-badge {
    width: 25px !important; 
    height: 25px !important; 
    font-size: 9pt; 
    text-align: center !important; 
    vertical-align: middle !important; 
    font-weight: bold; 
    color: white;
    background-color: red; /* Tambahkan background color agar lebih terlihat */
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


.notification-section {
    border-radius: 10px !important;
    padding: 0px !important;
    width: 385px !important;
    background-color: rgba(255, 255, 255, 0.797);
    color: white !important;
    border: 1px solid rgba(227, 227, 227, 0.733);
}

.notification-list {
    margin: 0px !important;
    border-bottom: 1px solid rgb(139, 139, 139);
    cursor: pointer;
}

.notification-title {
    font-weight: bold;
}

.readable-notification-list {
    max-height: 500px; 
    overflow-y: auto; 
}

.readable-notification-list > li.unread-notification-list {
    color: black !important;
    background-color: white;
}

.unread-counter {
    background-color: white !important;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #283444 !important;
    border-bottom: 1px solid #c6c6c6;
}

.unread-counter > b {
    color: #283444 !important;
}

.notification-body {
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    white-space: normal; 
    margin: 0;
    padding: 0;
}

.unread-notification-list {
    background-color: rgba(0, 0, 0, 0.15);
}

.notification-popup-body {
    padding: 30px !important;
}

#notification-body {
    margin-bottom: 30px !important;
}

.popup-notification-footer {
    padding: 10px 10px 10px 10px !important;
}

._notification {
    display: flex;
}

._notification > .notification-content {
    width: 300px;
}

.action-notification > img {
    padding-top: 25px !important;
    padding-left: 5px;
}

.mark-all-as-read {
    font-size: 10pt !important;
    border-top: 1px solid #777777;
}

#promo_events{
    background: url(../img/bg-promo-events-home.png) no-repeat center center;
    background-size: cover;
    padding: 50px;
}

#promo_events .f-carousel {
  --f-carousel-spacing: 8px;
  --f-carousel-slide-width: calc((100% - 8px) / 2);
}


#promo_events-carousel .f-carousel__slide{
    /*width: calc(50% - 4px);
    margin: auto;*/
}

#promo_events-carousel .f-carousel__slide .promo_events-item {
    text-align: center;
    padding: 10px;
}

#promo_events-carousel .f-carousel__track {
    /*-webkit-transform: none !important;*/
    /*transform:none !important;*/
    align-items: center;
    justify-content: center;
}

#promo_events-carousel .f-carousel__slide .promo_events-thumbnail{
    max-width: 100%;
    height: 400px;
    max-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#promo_events-carousel .f-carousel__nav .is-next{
    right: -25px;
    background: linear-gradient(#82a576,#3e643e);
    top: 200px;
}

#promo_events-carousel .f-carousel__nav .is-prev{
    left: -25px;
    background: linear-gradient(#82a576,#3e643e);
    top: 200px;
}

#promo_events-carousel .f-carousel__nav .f-button svg{
    stroke: #fff;
}

.promo_events-title {
    padding: 20px;
    margin-bottom: 50px;
}

.promo_events-title h4{
    font-weight: 700;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
}

.promo_events-title label {
    font-size: 18px;
    text-align: center;
}

.promo_events-readmore {
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.promo_events-detail-section, .promo_events-list-section{
    margin-top: 6%;
    margin-bottom: 6%;
}

.promo_events-articles-item {
    background-color: #fff;
    border: 1px solid #cccccc;
}

.promo_events-articles-item .promo_events-articles-readmore{
    position: relative;
    display: flex;
    justify-content: center;
}

.promo_events-detail-feat-img {
    text-align: center;
}
.promo_events-detail-feat-img .promo_events-detail-picture {
    max-height: 80vh;
}

.section-form {
    background-color: #fff;
    padding: 85px;
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.07);
}
.chosen-container {
    width: 100% !important;
    /*font-size: 16px !important;*/
}

.chosen-container .chosen-single, 
.chosen-container .chosen-choices {
    border-radius: 8px !important;
    padding: 0 2.25rem .375rem .75rem !important;
    line-height: 52px !important;

}

.chosen-container-single .chosen-search input[type="text"],
.chosen-container .chosen-results {
    font-size: 16px !important;
    line-height: 30px !important;
}