.iowd-button {
    border-radius: 6px;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    box-sizing: border-box;
}
.iowd-button:hover {
    opacity: 0.8;
}
.iowd-button-medium {
    width: 260px;
}
.iowd-button-small {
    width: 180px;
}
.iowd-button-cancel {
    color: #323A45;
    background-color: #E6E7E8;
}
.iowd-button-cancel:hover {
    color: #323A45;
    background-color: #E6E7E8;
}
.iowd-button-deactivate {
    color: #fff;
    background-color: #FD3C31;
}
.iowd-button-deactivate:hover {
    color: #fff;
    background-color: #FD3C31;
}
.iowd-deactivate-popup * {
    box-sizing: border-box;
    font-family: Open Sans, sans-serif;
}
.iowd-deactivate-popup {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: #323A4534;
    display: none;
    flex-direction: column;
    justify-content: center;
    z-index: 9999;
    color: #323A45;
    font-family: sans-serif;
}
.iowd-deactivate-popup.open {
    display: flex;
}
.iowd-deactivate-popup-body {
    width: 700px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 35px 50px;
    font-size: 16px;
    line-height: 24px;
    justify-content: space-between;
    position: relative;
}
.iowd-deactivate-popup-content {
    max-width: 600px;
    flex-grow: 1;
    margin: 17px 0 30px 0;
}
.iowd-deactivate-popup-content>p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 17px 0;
}
.iowd-deactivate-popup-content>p a, .iowd-deactivate-popup-content>p a:hover {
    color: #2160B5;
}
.iowd-deactivate-popup-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 800;
    margin-bottom: 3px;
}
.iowd-deactivate-popup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.iowd-deactivate-popup-list p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    padding-left: 25px;
    position: relative;
    margin: 0;
}
.iowd-deactivate-popup-list p:before {
    content: '';
    display: inline-block;
    background-image: url(../img/error_solid.svg);
    width: 22px;
    height: 17px;
    position: absolute;
    left: 0;
    top: -1px;
}

.iowd-button-disconnect, .iowd-button-disconnect:hover {
    background-color: #E6E7E8;
    color: #323A45;
}
.iowd-deactivate-popup-button-container {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 20px;
}
.iowd-close-img {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
@media screen and (max-width: 767px){
    .iowd-deactivate-popup-body {
        width: 100%;
        height: auto;
        top: 35px;
        border-radius: 0;
        padding: 35px 20px;
    }
}