
a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
a:hover {
    text-decoration: none; }

.acme-news-ticker {
    position: relative;
    height: 25px; }
@media (min-width: 768px) {
    .acme-news-ticker {
        margin-top: 0; } }
.acme-news-ticker-label {
    background: #1974d2;
    padding: 10px;
    width: auto;
    float: left;
    margin-right: 15px;
    line-height: normal;
    height: 100%;
    color: #fff; }
@media (max-width: 575px) {
    .acme-news-ticker-label {
        position: absolute;
        top: -45px; } }
.acme-news-ticker-box {
    height: 100%;
    overflow: hidden; }
@media (max-width: 575px) {
    .acme-news-ticker-box {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.acme-news-ticker-box ul {
    width: 100%;
    list-style-type: none !important;
    padding: 0;
    margin: 0; }
.acme-news-ticker-box ul li a {
    text-decoration: none;
    font-size: 16px;
}
.acme-news-ticker-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    pointer-events: painted;
}
.acme-news-ticker-controls span {
    height: 100%;
    padding: 0;
    width: 40px;
    border-color: #eeeeee;
    border-style: solid;
    border-width: 0 0 0 1px;
    cursor: pointer;
    display: inline-block; }
.acme-news-ticker-controls span:hover {
    background: #eeeeee; }
.acme-news-ticker-controls span.acme-news-ticker-arrow {
    margin: 0;
    display: inline-block;
    position: relative; }
.acme-news-ticker-controls span.acme-news-ticker-arrow:after {
    border-color: #999;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: '';
    display: inline-block;
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 8px; }
.acme-news-ticker-controls span.acme-news-ticker-pause {
    position: relative;
    display: inline-block; }
.acme-news-ticker-controls span.acme-news-ticker-pause.play:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-color: #999;
    border-style: solid;
    border-width: 0 2px 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.acme-news-ticker-controls span.acme-news-ticker-pause.stop:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid #999;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    -webkit-transform: translate(-20%, -45%) rotate(0deg);
    -ms-transform: translate(-20%, -45%) rotate(0deg);
    transform: translate(-20%, -45%) rotate(0deg);
    left: 50%;
    top: 45%;
}
.acme-news-ticker-controls.acme-news-ticker-horizontal-controls span.acme-news-ticker-prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg); }
.acme-news-ticker-controls.acme-news-ticker-horizontal-controls span.acme-news-ticker-next:after {
    -webkit-transform: translate(-50%, -50%) rotate(315deg);
    -ms-transform: translate(-50%, -50%) rotate(315deg);
    transform: translate(-50%, -50%) rotate(315deg); }
.acme-news-ticker-controls.acme-news-ticker-vertical-controls span.acme-news-ticker-prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
    -ms-transform: translate(-50%, -50%) rotate(225deg);
    transform: translate(-50%, -50%) rotate(225deg); }
.acme-news-ticker-controls.acme-news-ticker-vertical-controls span.acme-news-ticker-next:after {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg); }





.notice-bar {
    width: 100%;
}
.notification-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification {
    font-size: 20px;
    opacity: 0;
    margin-right: auto;
}

.notification.slide-in {
    animation: slideIn 0.5s forwards;
}

.notification.slide-out {
    animation: slideOut 0.5s forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0; /* Başlangıçta görünmez */
        transform: translateY(-20px); /* Yukarıdan gelir */
    }
    100% {
        opacity: 1; /* Tamamen görünür */
        transform: translateY(0); /* Orta noktada durur */
    }
}

@keyframes slideOut {
    0% {
        opacity: 1; /* Tamamen görünür */
        transform: translateY(0); /* Orta noktada durur */
    }
    100% {
        opacity: 0; /* Sonunda tekrar görünmez */
        transform: translateY(20px); /* Aşağıdan kaybolur */
    }
}

.nav-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}




.container-topbar {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.container-topbar.hidden {
    opacity: 0; /* Görünmez olacak */
}

.hidden {
    opacity: 0;
    display: none;
}
#notice-close {
    cursor: pointer;
}
.container-topbar, .container-below-top {
    background: #F3F3F3;
    padding: 3px 0;
}
.topbar-inner {
    color: #000;
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1em;
}
.importantText {
    font-size: 20px;
    font-weight: 700;
}
.mod-articlesnews-vertical.newsflash-vert.mod-list {
    margin: 0;
    padding: 0;
}
.newsflash-title {
    padding: 0;
    margin: 0;
}
.newsflash-title a {
    font-size: 20px;
    font-weight: 400;
}
.newsflash-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-container-min-h
{
    min-height: 500px;
}

.form-label {
    margin-bottom: 0.5rem !important;
    font-size: 12px !important;
}
.form-control {
    max-width: 100% !important;
    background-color: hsl(0, 0%, 100%) !important;
    border: none !important;
    line-height: 25px !important;
}
.input-group-text {
    font-size: 16px !important;
    text-align: left !important;
    padding: 10px !important;
}
.terms-text {
    font-size: 12px !important;
    position: absolute !important;
    bottom: 15px !important;
}
.terms-text a{
    color: var(--cassiopeia-color-primary);
}
#custom-banner p {
    margin: 0;
}
.btn-close.video-close {
    right: -53px;
    background-color: white;
    color: black;
    z-index: 9999;
    padding: 10px;
    top: 0;
}
.video-frame {
    background-color: #000 !important;
    padding: 20px 70px;
}
.grioffer {
    background: #F3F3F3;
    height: 120px;
    color: black;
}
.gri-overlay {
    padding: 30px 30px;
}
.gri-overlay > p {
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.moduletable.recommended {
    position: relative;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 30px;
}
.recommended > h3 {
    font-size: clamp(30px, 4vw, 44px) !important;
    font-weight: 600 !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: var(--hititcs-color-primary);
}
.icon-container {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 30px;
}

.icon-container svg {
    position: absolute;
    top: 0;
    left: 9px;
    transition: opacity 0.5s ease;
}

.icon-container .default {
    opacity: 1;
}

.icon-container .hover {
    opacity: 0;
}

.icon-container:hover .default {
    opacity: 0;
}

.icon-container:hover .hover {
    opacity: 1;
}
.osmap-item-url {
    color: var(--hcs-color-secondary);
    font-weight: 700;
}
.osmap-item-separator {
    color: var(--hcs-color-secondary);
    font-weight: 700;
}


.airport-left {
    width: 100%;
    padding: 35px 0;
    align-content: center;
}
.airport-right {
    background: #F3F3F3;
    padding: 25px;
    width: 50%;
    font-size: 16px;
    font-weight: 400;
    align-content: center;
}
.airport-right > h2 {
    font-size: 34px !important;
    font-weight: 500 !important;
    margin-bottom: 30px;
}
.airport-image {
    width: 100%;
}
#map {
    margin: 0;
    height: 420px;
    z-index: 0;
}

/* DivOverlay için özel stil */
.custom-overlay {
    width: 300px;
}
.custom-overlay > a {
    text-decoration: none;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: white;
    color: #333;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-popup-content {
    margin: 0;
    line-height: inherit;
    font-size: unset;
    /* min-height: 1px; */
}
.leaflet-popup-content-wrapper {
    padding: 0;
    text-align: left;
    border-radius: 3px;
}
.leaflet-popup-content p {
    margin: 0 !important;
}
.map-image > img {
    width: auto;
    height: 95px;
}
.map-price {
    font-size: 16px !important;
    font-weight: 400;
    color: #112211;
    align-content: center;
    align-items: center;
    align-self: center;
    display: flex;
    justify-content: center;
    text-wrap: nowrap;
}
.leaflet-control-attribution.leaflet-control {
    display: none;
}
.Center-header {
    position: relative;
    height: 100%;
}
.Absolute-Center {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: clamp(50px, 15vw, 120px);
    font-weight: 800;
    width: max-content;
    text-transform: uppercase;
}

.is-Fixed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {

}
@media all and (max-width: 950px) {
    .airport-left {
        width: 100%;
        padding: 0;
    }
    .airport-right {
        background: #F3F3F3;
        padding: 50px;
        width: 95%;
        margin-top: -15px;
        margin-left: auto;
        margin-right: auto;
    }
    .moduletable.recommended {
        position: relative;
        overflow: hidden;
        margin-right: -15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 640px) {
    #map {
        margin: -15px;
    }
    .map-image > img {
        width: 100%;
        height: auto;
    }
    .map-price {
        text-align: center;
        height: 90px;
    }
    .custom-overlay {
        width: 250px;
    }
    .custom-overlay > a > div {
        flex-direction: column;
    }
    .custom-overlay > div {
        flex-direction: column;
    }
}
.top-b .mod-custom h3 span {
    line-height: 1.2!important;
  }
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

button:focus,
a:focus,
input:focus {
    outline: 2px solid #005fcc; /* mavi gibi belirgin bir renk */
    outline-offset: 2px;
}
.loader {
    width: 25px;
    height: 25px;
    border: 3px solid #ccc;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}