/* Кнопка закрытия popup */

.t-store__prod-popup__close,
.t-popup__close{

    position:fixed !important;

    top:14px !important;
    right:14px !important;
    left:auto !important;

    width:42px !important;
    height:42px !important;

    z-index:999999999 !important;

    background:#446041 !important;
    border-radius:50% !important;

    opacity:1 !important;
    visibility:visible !important;

    box-shadow:0 4px 12px rgba(0,0,0,.18);
}

/* скрываем стандартную иконку tilda */

.t-store__prod-popup__close svg,
.t-popup__close svg,

.t-store__prod-popup__close img,
.t-popup__close img,

.t-store__prod-popup__close .t-popup__close-icon,
.t-popup__close .t-popup__close-icon{

    display:none !important;
}

/* рисуем свой крестик */

.t-store__prod-popup__close:before,
.t-store__prod-popup__close:after,

.t-popup__close:before,
.t-popup__close:after{

    content:'' !important;

    position:absolute !important;

    top:50% !important;
    left:50% !important;

    width:18px !important;
    height:2px !important;

    background:#fff !important;

    border-radius:2px !important;
}

/* линия 1 */

.t-store__prod-popup__close:before,
.t-popup__close:before{

    transform:translate(-50%, -50%) rotate(45deg) !important;
}

/* линия 2 */

.t-store__prod-popup__close:after,
.t-popup__close:after{

    transform:translate(-50%, -50%) rotate(-45deg) !important;
}

