#user-hover-overlay,
#registration-overlay,
#private-overlay,
#package-overlay,
#tasting-overlay {
    visibility: hidden;
    opacity: 0;
    display: flex;
    transform: scale(0.95);
    position: absolute;
    left: 7vw;
    height: 70vh;
    top: 50px;
    width: 86vw;
    z-index: 99999;
    flex-direction: row;
    background-color: var(--white-color);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
#private-overlay.show,
#user-hover-overlay.show,
#package-overlay.show,
#registration-overlay.show,
#tasting-overlay.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.center_logo {
    flex: 0.25;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: calc(50% - 100px);
    top: -100px;
}
.center_logo a.logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.center_logo a.logo-link img {
  width: 200px;
  height: 200px;
  z-index: 100 !important;
  display: block;
}
.user-hover-overlay-left {
    width: 40%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.user-hover-overlay-right {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
}
.overlay-title {
    margin-top: 50px;
    font-size: 30px;
    font-family: var(--font-main);
    font-weight: 900;
    color: var(--black-color);
    text-align: right;
    width: 70%;
}
.overlay-desc {
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--dark-gray-color);
    text-align: right;
    width: 70%;
}
.overlay-time {
    font-size: 24px;
    font-family: var(--font-main);
    color: var(--red-color);
    font-weight: 900;
    text-align: right;
    width: 70%;
    margin-top: 10px;
}
.overlay-img-wrapper {
    margin-top: 10px;
    display: block;
    position: relative;
    margin-bottom: 15px;
    max-width: 60%;
    margin-bottom: 80px;
}
.overlay-img {
    display: block;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}
.overlay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-color);
    color: var(--white-color);
    position: absolute;
    left: 20px;
    bottom: 20px;
    height: 44px;
    width: 120px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: normal;
    font-family: var(--font-main);
    font-size: 16px;
    text-align: center;
    border: 1px solid var(--red-color);
}
.overlay-btn:hover {
    background: var(--white-color);
    color: var(--red-color);
    border: 1px solid var(--red-color);
}
.overlay-new-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
}
.overlay-new-img {
    display: block;
    width: 120%;
    height: auto;
}
.overlay-icon-img{
    width: 15px;
    height: 15px;
}
.overlay-new-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-20deg);
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: var(--font-main);
    pointer-events: none;
}
.overlay-price-wrapper {
    position: absolute;
    left: 60px;
    top: 110px;
    transform: translate(-50%, -50%) rotate(30deg);
    display: inline-block;
}
.overlay-price-img {
    display: block;
    width: 100%;
    height: auto;
}
.overlay-price-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    color: var(--red-color);
    font-size: 20px;
    font-weight: bold;
    font-family: var(--font-main);
    pointer-events: none;
}
.line-separator {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--pink-color);
}
.town-tours-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    padding: 10px 0;
    direction: rtl;
    width: 100%;
    box-sizing: border-box;
}
.town-title {
    font-size: 22px;
    font-weight: 900;
    font-family: var(--font-main);
    color: var(--black-color);
    margin-bottom: 10px;
    text-align: right;
}
.towns-block-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.town-tour-item {
    font-size: 16px;
    font-weight: normal;
    font-family: var(--font-main);
    color: var(--dark-gray-color-alpha);
    margin-bottom: 10px;
    text-align: right;
    margin-bottom: 5px;
    text-decoration: none;
    cursor: pointer;
}
.town-tour-item:hover {
    font-weight: bold;
    color: var(--black-color);
}