.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.right-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 580px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #f1f1f1;
}

.right-drawer.open {
    transform: translateX(0);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
}

.drawer-content {
    padding: 32px 24px;
    overflow-y: auto;
}

.drawer-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #000;
}

.drawer-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

.xl-desktop .frame.availPopup, .xl-desktop .ODS-cards-preferred {
    width: 100%;
}

@media (max-width: 768px) {
    .right-drawer {
        width: 100%;
        top: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .right-drawer {
        width: 70%;
    }
}

.modal-resultsFiberSpeed {
    background: white;
    width: 500px;
    padding: 20px;
    margin: 10% auto;
    position: relative;
    border-radius: 5px;
}
@media screen and (min-width:360px) and (max-width:390px){
    .drawer-content {
      width:360px;
      height:680px;
    }
    .drawer-close {
     right:61px;
     }
}
@media screen and (min-width:390px) and (max-width:420px){
    .drawer-content {
      width:399px;
    }
}
@media screen and (min-width:421px) and (max-width:435px){
    .drawer-content {
      width:420px;
    }
}
