
:focus {
    outline: 0;
}

.popup-toggle-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #ebebf2;
    cursor: pointer;
}
.popup-toggle-btn img {
    margin-right: 10px;
}
.popup, .popup .share-popup ul li a {
    align-items: center;
    justify-content: center;
}
.popup, .popup .popup-close-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%}
.popup {
    background: rgba(0, 0, 0, .5);
    z-index: 10;
    display: flex;
    opacity: 0;
    visibility: hidden;
}
.popup .popup-close-fixed {
    cursor: pointer;
}
.popup .popup-close {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #f7f7fc;
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 300ms background-color;
}
.popup .popup-close:hover {
    background: #ececf8;
}
.popup .popup-close img {
    height: 15px;
}
.popup .popup-inner, .popup .share-popup .input {
    position: relative;
}
.popup .share-popup {
    width: 808px;
    padding: 55px 78px;
    background: #fff;
    border-radius: 15px;
}
.popup .share-popup h4, .popup .share-popup h6 {
    font-size: 22px;
    font-weight: 700;
    color: #242e4c;
    margin-bottom: 40px;
}
.popup .share-popup ul {
    display: flex;
    margin-bottom: 40px;
}
.popup .share-popup ul li {
    flex: 1;
    text-align: center;
}
.popup .share-popup ul li a {
    display: inline-flex;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 1px solid #ebebf2;
    transition: 300ms border-color ease-in;
}
.popup .share-popup ul li a img {
    height: 35px;
}
.popup .share-popup ul li a:hover {
    border-color: #f775c1;
}
.popup .share-popup h6 {
    font-size: 16px;
    margin-bottom: 10px;
}
.popup .share-popup .input button {
    position: absolute;
    top: 0;
    right: 0;
    height: 57px;
    padding: 0 20px;
    line-height: 57px;
    font-size: 14px;
    font-weight: 700;
    color: #f775c1;
    background: 0 0;
    cursor: pointer;
}
.popup .share-popup .input input {
    height: 57px;
    border: 1px solid #ebebf2;
    border-radius: 5px;
    width: 100%;
    padding: 0 15px;
    font-size: 16px;
    color: #242e4c;
}
.popup-toggle {
    display: none;
}
.popup-toggle:checked+.popup {
    opacity: 1;
    visibility: visible;
}
.alert {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 5px 25px;
    border-radius: 20px;
    font-size: 14px;
    background-color: #1b1b30;
    opacity: 0;
    color: #fff;
    visibility: hidden;
    transition: 300ms all;
    z-index: 11;
}
.alert.success {
    background-color: #f775c1;
}
.alert.error {
    background-color: #a02525;
}
.alert.active {
    transform: translate(-50%, -20px);
    opacity: 1;
    visibility: visible;
}