@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;500;600;700;900&display=swap");

.cont {
    width: 100vw;
    height: 100vh;
    background-color: #373737;
}
.testbuttons {
    display: flex;
    gap: 20px;
    padding: 20px;
}
.testbutt {
    padding: 10px;
    background-color: #8a2232;
    color: #fff;
    width: 100px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}
.iox-notif {
    width: 100%;
    max-width: 300px;
    position: fixed;
    bottom: 10px;
    opacity: 1;
    left: 10px;
    transition: all 0.5s;
    cursor: default;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    z-index: 2;
}
.iox-notif-card {
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    padding: 4px 4px 7px 4px;
    margin-bottom: 5px;
    margin-top:5px;
    border-radius: 4px;
    opacity: 1;
    position: relative;
    left: 0px;
    transition: left 0.5s, opacity 0.5s;
    cursor: default;
    overflow: hidden;
}
.iox-notif-card.unopened {
    left: -350px;
    opacity: 0;
    transition: left 0.5s, opacity 0.5s;
}
.iox-notif-card.closing {
    left: -350px;
    opacity: 0;
    transition: left 0.8s, opacity 0.8s;
}

.iox-notif * {
    font-family: jost;
}
.iox-notif b {
    color: var(--main-color);
}
.iox-notif .tinynotif b {
    color: var(--second-color);
}

.iox-notif-inner {
    display: flex;
    gap: 10px;
    height: 100%;
}
.iox-notif-display {
    min-width: 60px;
    min-height: 60px;
    display: flex;
    font-size: 30px;
    color: #fff;
    background-color: #8a2332aa;
    background-opacity: 0.4;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    position: relative;
}
.iox-notif-info {
    display: flex;
    /*   grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2fr, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px; */
    flex-direction: column;
    padding: 10px;
}
.iox-notif-info-group {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.iox-notif-info-text {
    /*   grid-area: 1 / 1 / 2 / 3; */
    font-size: 1rem;
    line-height: 1.2;
    flex-grow: 2;
    padding-bottom: 10px;
    white-space: prewrap;
}
.iox-notif-info-button {
    /*   grid-area: 2 / 1 / 3 / 2; */
    font-size: 0.85rem;
    color: var(--main-color);
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    padding-left: 0px;
    flex-grow: 2;
    transition: all 0.3s;
    pointer-events: auto;
}
.iox-notif-info-button:after {
    content: "\f054";
    font: var(--fa-font-regular);
    display: inline-block;
    padding-left: 0px;
    text-rendering: auto;
    font-size: 10px;
    -webkit-font-smoothing: antialiased;
    transition: padding-left 0.4s;
}
.iox-notif-info-button:hover:after {
    padding-left: 3px;
}
.iox-notif-info-button:hover {
    color: #000;
    padding-left: 3px;
}
.iox-notif-info-tag {
    font-size: 0.5rem;
    /*   grid-area: 2 / 2 / 3 / 3; */
    text-align: right;
    line-height: 1;
}
.iox-notif-indicator {
    background-color: var(--main-color);
    height: 4px;
    width: 0%;
    bottom: 0px;
    left: 0px;
    border-radius: 0 0 0px 2px;
    transition: width 6s linear;
    position: absolute;
}
.tinynotif .iox-notif-indicator {
    background-color: var(--second-color);
}
.unopened .iox-notif-indicator {
    width: 100%;
    transition: width 0.1s;
}
.iox-notif-card.tinynotif {
    background-color: transparent;
}
.tinynotif .iox-notif-inner {
    align-items: center;
    gap: 0px;
}
.tinynotif .iox-notif-display {
    background-color: #fff;
    border-radius: 100%;
    z-index: 3;
}
.tinynotif.unopened .iox-notif-info,
.tinynotif.closing .iox-notif-info {
    left: -50px;
    transition: left 0.5s;
}
.tinynotif .iox-notif-info {
    background-color: #fff;
    border-radius: 0 50px 50px 0;
    padding: 10px;
    padding-left: 20px;
    left: -15px;
    transition: left 0.5s;
    position: relative;
}

.iox-notif-circ {
    opacity: 0.47;
    background-color: var(--second-color);
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.circ3 {
    width: 50px;
    height: 50px;
    transition: width 1s cubic-bezier(0.68, -0.55, 0.265, 1.35),
    height 1s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}
.circ2 {
    width: 35px;
    height: 35px;
    transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.35),
    height 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}
.circ1 {
    width: 20px;
    height: 20px;
    transition: width 0.65s cubic-bezier(0.68, -0.55, 0.265, 1.35),
    height 0.65s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}
.unopened .circ1,
.unopened .circ2,
.unopened .circ3,
.closing .circ1,
.closing .circ2,
.closing .circ3 {
    width: 0px;
    height: 0px;
}
.tinynotif .iox-notif-info-text {
    padding: 0;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}
.tinynotif .iox-notif-info-group {
    display: none;
}

.iox-notif-successtext{
    padding-left:5px;
    margin-left:5px;
    border-left: 1px dashed #000
}

.iox-success-animation { margin:150px auto;}

.iox-checkmark {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: iox-checkfill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    margin: 0 auto;
}
.iox-checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: iox-checkstroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;

}

.iox-checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: iox-checkstroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes iox-checkstroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes iox-checkscale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes iox-checkfill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

.iox-notif-successdisplay{

    min-width: 60px;
    min-height: 60px;
    display: flex;
    font-size: 30px;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    position: relative;
    background-color: #fff;
    border-radius: 100%;
    z-index: 1;
}

.success .big-c-inner {
    align-items: center;
    gap: 0px;
}
.success .big-c-info {
    background-color: #fff;
    border-radius: 0 50px 50px 0;
    padding: 10px;
    padding-left: 20px;
    left: -15px;
    transition: left 0.5s;
    position: relative;
}

.big-c-card.success {
    background-color: transparent;
}