::selection, mark {
    background: #045bc1;
    color: #FFF;
}
.calendar-wrapper {
    position: relative;
}

#calendar-main-btn {
    transition: background 0.3s ease;
}

.calendar-options {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
}

.calendar-options a {
    padding: 0;
    background: white;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 33px;
}

.calendar-options a:hover {
    background: #f3f3f3;
}

.calendar-options.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-80%);
}
#psdLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 999999999999999;
    background: #FFF;
    display:flex;
}

svg#psdaeroLogo {
    fill-opacity: .001;
    animation-name: colorAppear;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    width: 350px;
    display: block;
    margin: auto;
}

#mainVideo {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

/*#mainVideo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, #121519);
    z-index: 1;
}*/

.videoFrame {
    /*position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
    z-index: -100000;
    pointer-events: none;
    user-select: all;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@keyframes colorAppear {
    100% {
        fill-opacity: 1;
    }
}

@-webkit-keyframes colorAppear {
    100% {
        fill-opacity: 1;
    }
}

svg#psdaeroLogo path {
    stroke: #2f2f2f;
    stroke-width: 1px;
    stroke-dasharray: 320px;
    stroke-dashoffset: 320px;
    stroke-opacity: 1;
    animation-name: anim;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    transition: all 0.3s;
}

@keyframes anim {
    100% {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
        stroke-opacity: 0.1;
    }
}

@-webkit-keyframes anim {
    100% {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
        stroke-opacity: 0.1;
    }
}