.cd-popup-trigger {
    display: block;
    width: 170px;
    height: 50px;
    margin: 3em auto;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50em;
    background: #35a785;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
}
@media only screen and (min-width: 1170px) {
    .cd-popup-trigger {
        margin: 6em auto;
    }
}

.img-replace {
    /* replace text with an image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
}

/* --------------------------------

xpopup

-------------------------------- */
.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(94, 110, 141, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 410px;
    margin: 4em auto;
    background: #FFF;
    border-radius: .25em .25em .4em .4em;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.cd-popup-container .cd-popup-inner {
    padding: 10px;
    font-size: 13px;
    line-height: 1.5;
    margin: 1em 0;
}

.cd-popup-container .cd-popup-inner .heading {
    font-size: 18px;
    line-height: 1.5;
    margin: 10px 0;
}

.cd-popup-container .cd-popup-inner .warning {
    line-height: 1.5;
    font-weight: bold;
}

.cd-popup-container .cd-popup-inner ul li {
    list-style: circle !important;
    margin: 0;
}

.cd-popup-container .cd-popup-inner  .cd-buttons:after {
    content: "";
    display: table;
    clear: both;
}

.cd-popup-container .cd-popup-inner .cd-buttons li {
    float: left;
    width: 50%;
    list-style: none;
}

.cd-popup-container .cd-popup-inner .cd-buttons a,.btn {
    display: block;
    height: 60px;
    width: 190px;
    line-height: 60px;
    text-transform: uppercase;
    color: #FFF;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.approve-btn {
    background: #28a745;
    border-radius: 0 0 0 .25em;
    border: none;
    margin-left: 4px;
}

.approve-btn:hover {
    background-color: #5dd277;
}

.deny-btn {
    background: #CF0A0A;
    border-radius: 0 0 0 .25em;

    border: none;
    margin-left: 4px;
}

.deny-btn:hover {
    background-color: #e63c3c;
}

.cd-popup-container .cd-popup-inner .cd-buttons li:last-child a {
    background: #b6bece;
    border-radius: 0 0 .25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
    background-color: #c5ccd8;
}
.cd-popup-container .cd-popup-inner .cd-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
}
.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}
.cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}
.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.container {
    max-width: 80%;
    width: 580px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item {
    border: 1px solid #222222;
    padding: 2px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: center;
    will-change: transform;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

.item:hover {
    border-color: #7e3af2;
    transform: scale(1.025);
}

.item svg {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.item:hover svg {
    color: #312e81;
    fill: red;
}

.item button {
    all: unset;
    margin-left: auto;
    background-color: #312e81;
    padding: 0px 5px;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}

.item button:hover {
    background-color: #312e81;
}

@media only screen and (min-width: 1170px) {
    .cd-popup-container {
        margin: 8em auto;
    }

    .moveup-page {
        width: 80%;
        height: 95vh;
        box-shadow: 0px 4px 8px rgb(0 0 0 / 20%);
        color: #444;
        margin: 0 auto;
        margin-top: 10px;
        font-family: "Lato", sans-serif;
        border-radius: 30px;
        border: 15px solid #312e81;
        padding: 0 22px;
        min-height: 95vh;
        min-width: 0px;
        flex: 1 1 0%;
        --tw-bg-opacity: 1;
        background-color: rgb(241 245 24) / var(--tw-bg-opacity);
        padding-bottom: 2.5rem;
    }

    .moveup-logo {
        text-align: center;
        margin: 50px;
    }

    .moveup-logo img {
        max-width: 220px;
    }

    .moveup-login-url {
        margin-bottom: 15px;
        font-size: 20px;
        text-align: center;
    }

    .moveup-btn-login-me {
        background-color: rgb(49 46 129);
        color: white;
        border-radius: 5px;
        padding: 10px 15px;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        border: 0;
        box-shadow: 0px 2px 4px rgb(0 0 0 / 40%);
        margin-top: 20px;
        cursor: pointer;
    }

    .moveup-btn-login-me:hover {
        transform: scale(1.02);
        filter: brightness(90%);
        outline: none;
    }
}