::selection {
    color: #fff;
    background: #000000;
}

.popup {
    position: fixed;
    left: 50%;
    z-index: 1000001;
    color: #000000;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    cursor: pointer;
}

.popup button {
    outline: none;
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: background 0.1s linear, border-color 0.1s linear,
        color 0.1s linear;
}
.popup {
    background: rgb(255, 254, 254);
    padding: 25px;
    border-radius: 15px;
    top: 10%;
    max-width: 380px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(1.2);
    transition: top 0s 0.2s ease-in-out, opacity 0.2s 0s ease-in-out,
        transform 0.2s 0s ease-in-out;
}
.popup.show {
    top: 50%;
    left: 50%;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: top 0s 0s ease-in-out, opacity 0.2s 0s ease-in-out,
        transform 0.2s 0s ease-in-out;
}
.popup :is(header, .field) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popup :is(.icons) {
    display: flex;
    align-items: center;
    justify-content: start;
}
.popup header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf9;
}
header span {
    font-size: 21px;
    font-weight: 600;
}
header .close,
.icons a {
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
header .close {
    color: #000000;
    font-size: 17px;
    background: #f3f3f3;
    height: 33px;
    width: 33px;
    cursor: pointer;
}
header .close:hover {
    color: #fff;
    background: #000000;
}
.popup .content {
    margin: 20px 0;
}
.popup .icons {
    margin: 15px 0 20px 0;
}
.content p {
    font-size: 16px;
    color: #000000;
}
.content .icons a {
    height: 50px;
    width: 50px;
    font-size: 20px;
    text-decoration: none;
    border: 1px solid transparent;
}
.icons a i {
    transition: transform 0.3s ease-in-out;
}
.icons a:nth-child(1) {
    color: #25d366;
    border-color: #bef4d2;
}
.icons a:nth-child(1):hover {
    background: #25d366;
}
.icons a:nth-child(2) {
    margin-left: 16px;
    color: #e13030;
    border-color: #f5bcbc;
}
.icons a:nth-child(2):hover {
    background: #e13030;
}
.icons a:hover {
    color: #fff;
    border-color: transparent;
}
.icons a:hover i {
    transform: scale(1.2);
}
.content .field {
    margin: 12px 0 -5px 0 !important;
    height: 45px !important;
    border-radius: 4px !important;
    padding: 0 5px !important;
    border: 1px solid #757171 !important;
}
.field.active {
    border-color: #000000 !important;
}
.field i {
    width: 50px !important;
    font-size: 18px !important;
    text-align: center !important;
}
.field.active i {
    color: #000000;
}
.field input {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    outline: none !important;
    font-size: 15px !important;
    margin-top: 20px;
}
.field input:focus {
    outline: none !important;
}
.field button {
    color: #000000 !important;
    padding: 5px 18px !important;
    background: #f3f3f3 !important;
}
.field button:hover {
    color: #fff !important;
    background: #000000 !important;
}
