.myexchange {
    min-height: 100px;
    display: flex;
    align-items: center;
    margin: 25px 0 10px;
    max-width: 575px;
}

.myexchange-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    background-color: #eff9ff;
    padding: 10px 60px 10px 15px;
    margin-right: 50px;
    border: 1px solid transparent;
}

.myexchange-inner.not-chosen {
    border-color: red;
}

.myexchange-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-image: url("/user/documents/upload/kodovani/immediate-exchange-ico.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}

.myexchange-title {
    color: #0761a9;
    font-weight: 500;
}

.myexchange-title .show-tooltip {
    margin-left: 4px;
    margin-top: -12px;
}

.clickable-tooltip {
    cursor: pointer;
}

/*

.fake-form label:has(input[type="checkbox"]) {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 5px;
    line-height: 1;
}

.fake-form label input[type="checkbox"] {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #1965AD;
    margin: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

.fake-form label input[type="checkbox"]:checked::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #DE2D7E;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fake-form label input[type="checkbox"]:checked::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mask-image: url("/user/documents/upload/kodovani/check.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #fff;
}

.fake-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.fake-form label:has(input[type="checkbox"]) span {
    color: #DE2D7E;
    font-weight: 400;
}

.fake-form label:has(input[type="checkbox"]) span strong {
    font-weight: 500;
}

*/

/* OVERLAY */

.myexchange-overlay {
    display: none;
    position: fixed;
    z-index: 999999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.myexchange-popup {
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    padding: 20px;
    position: relative;

    background: #fff;
}

.myexchange-popup-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.myexchange-popup h2,
.myexchange-popup h3 {
    color: var(--color-secondary);
}

.myexchange-popup h2 {
    margin-block: 0 20px;
}

.myexchange-popup h3 {
    margin-block: 10px 15px;
}

.myexchange-popup h4 {
    margin-block: 5px 10px;
}

.myexchange-popup h5 {
    margin-block: 5px;
}

.myexchange-popup .another-questions {
    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #e0e0e0;
    font-size: 14px;
}

.myexchange-popup .another-questions a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.myexchange-popup .another-questions a:hover {
    text-decoration: none;
}

.myexchange-popup-close {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;

    border-radius: 50%;
    background-color: #fff;
}

.myexchange-popup-close::before {
    content: "\e912";
    font-size: 14px;
    font-family: shoptet;
}
