.pl-megamenu {
    position: absolute;
    width: 1200px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #F6F6F6;
    z-index: 99999;
    border-radius: 24px;
}

.pl-megamenu__page {
    display: block;
    height: fit-content;
    /*padding: 0 0 0 4rem;*/
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
}

.pl-megamenu__page::after {
    display: block;
    clear: both;
    content: "";
}

.pl-megamenu__heading {
    float: left;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F6F6F6;
    border-radius: 24px;
}

.pl-megamenu__heading a {
    text-decoration: none;
    position: relative;
}


/*.pl-megamenu__heading a::after {/*
/*    display: inline-block;/*
/*    content: "";/*
/*    width: 30px;/*
/*    height: 30px;/*
/*    background-image: url('./arrow.svg');/*
/*    background-repeat: no-repeat;/*
/*    background-size: contain;/*
/*    position: absolute;/*
/*    top: 4px;/*
/*    right: -40px;/*
/*}*/

.pl-megamenu__heading h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--vk-color-text-body);
    padding-bottom: 4px;
    border-bottom: none;
}

/*.pl-megamenu__heading h3::after {*/
/*    content: none;*/
/*}*/

/*.pl-megamenu__heading h3::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    bottom: -5px;*/
/*    width: 100%;*/
/*    border-bottom: 2px solid #FFF;*/
/*    transform: translateX(-50%);*/
/*    transition: 0.3s;*/
/*}*/

.pl-megamenu__heading h3:hover::before {
    width: 0;
}

.pl-megamenu__heading span {
    font-size: 3.6rem;
    /*font-weight: bold;*/
    display: block;
    color: var(--vk-color-primary);
    font-family: var(--en);
}

.pl-megamenu__content {
    float: left;
    width: calc(100% - 320px);
    background: #F6F6F6;
    padding: 16px 0;
    border-radius: 24px;
}

.pl-megamenu__content ul {
    list-style: none;
    margin: 0;
}

.pl-megamenu__content ul::after {
    display: block;
    content: "";
    clear: both;
}

.pl-megamenu__content ul li {
    float: left;
    width: calc(33.333% - 32px);
    margin-right: 32px;
    margin-bottom: 16px;
}

.pl-megamenu__content ul li a {
    color: var(--vk-color-primary);
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
}

.pl-megamenu__image-wrap {
    display: inline-block;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pl-megamenu__image {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.pl-megamenu__image-wrap:hover {
    border-radius: 15px;
}

.pl-megamenu__image-wrap:hover img {
    transform: scale(1.1);
}

.pl-megamenu__title {
    /*padding: 6px;*/
    min-height: 30px;
    display: flex;
    align-items: center;
    /*background-color: var(--vk-color-border-hr);*/
}

/*.pl-megamenu__content ul li a:hover .pl-megamenu__title {*/
/*    transition: 0.3s;*/
/*    opacity: 0.8;*/
/*}*/

.pl_link-btn {
    --size: 40px;
    --ring: #0752a5;
    --track: rgba(0,0,0,.15);
    --dur: .55s;

    display:inline-block;
    width: var(--size);
    height: var(--size);
    padding:0;
    border:0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    margin: 0 10px;
}

.pl_link-btn-small {
    --size: 24px;
}

.pl_link-btn svg {
    width:100%;
    height:100%;
    display:block;
}

.pl_link-track {
    fill:none;
    stroke: var(--track);
    stroke-width: 6;
}

.pl_link-ring {
    fill:none;
    stroke: var(--ring);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
    transition: stroke-dashoffset var(--dur) ease, opacity .2s linear;
}

.pl_link-play {
    fill: var(--track);
    transform-origin: 50% 50%;
    transition: transform var(--dur) ease, fill var(--dur) ease;
}

a:hover .pl_link-ring {
    stroke-dashoffset: 0;
    opacity: 1;
}

a:hover .pl_link-play {
    transform: scale(1.08);
    fill: var(--ring);
}

a:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 4px;
    border-radius: 50%;
}

.pl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.pl-overlay.show {
    opacity: 1;
    pointer-events: auto;
}