.icon {
    display: inherit;
    flex: none;
    height: 1em;
    overflow: visible;
    font-size: var(--vicon-with-gradient-problem__size)
}

.icon:not(.icon--prevent-fill) {
    fill: currentColor
}

.icon.inline {
    display: inline
}

.icon.margin {
    display: block
}

.icon.inline:not(:first-child),
.icon.margin:not(:first-child) {
    margin-left: .5em
}

.icon.inline:not(:last-child),
.icon.margin:not(:last-child) {
    margin-right: .5em
}

.icon.square,
.icon.loading {
    width: 1em
}

.icon.sm {
    font-size: inherit
}

.icon.lg {
    font-size: 26px
}

.icon.md {
    font-size: 18px
}

.icon.xl {
    font-size: 50px
}

.icon.spin {
    animation: icon-spin 1.5s infinite linear
}

@keyframes icon-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.DefaultNotification_root_sFQA1 {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px 15px 15px 19px;
    position: relative;
    box-shadow: 0 6px 22px #090f1e40
}

.DefaultNotification_root_sFQA1:after {
    content: "";
    height: calc(100% - 30px);
    width: 4px;
    box-shadow: 0 2px 66px #0a62cc80;
    border-radius: 0 45px 45px 0;
    position: absolute;
    left: 0;
    top: 15px
}

.DefaultNotification_root_sFQA1.DefaultNotification_type-default_djXHc:after {
    background: linear-gradient(89.7deg, #108de7 0%, #0855c4 100%)
}

.DefaultNotification_root_sFQA1.DefaultNotification_type-success_F_Gw0:after {
    background: linear-gradient(269.91deg, #009746 0%, #38c172 100%)
}

.DefaultNotification_root_sFQA1.DefaultNotification_type-error_ND7jW:after {
    background: linear-gradient(268.19deg, #d40d2d -4.41%, #ff2c2c 88.38%), linear-gradient(89.7deg, #108de7 0%, #0855c4 100%)
}

.DefaultNotification_closeButton_UnywV {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%
}

.DefaultNotification_closeIcon_LadFO {
    height: 9px;
    width: 9px;
    color: #94a6cd80;
    transition: color .1s ease-in-out
}

.DefaultNotification_root_sFQA1:hover .DefaultNotification_closeIcon_LadFO {
    color: #5c72a3cc
}

.DefaultNotification_title_biKhy {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #000;
    white-space: pre-line;
    word-break: break-word;
    padding-right: 20px
}

.DefaultNotification_message_byJ5F {
    font-size: 12px;
    line-height: 14px;
    color: #000000b3;
    white-space: pre-line;
    word-break: break-word;
    padding-right: 20px;
    margin-top: 5px
}

.DefaultNotification_content_DMYVs {
    margin-top: 15px
}


/*  */
/*  */
/*  */


.toolToggle {
    display: none;
    width: 50px;
    position: fixed;
    top: 10%;
    right: 5%;
    z-index: 1000;
}

.toolToggle.hide {
    display: none;
}

.toolToggle img {
    width: 100%;
    border-radius: 50px;
    background-color: #fff;
}

.dragging {
    opacity: 0.7;
}

.toolCart {
    display: none;
    position: fixed;
    right: 5%;
    top: 10%;
    background-color: #fff;
    width: 70%;
    /*height: 28%;*/
    padding: 10px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid #b0b0b0;
    z-index: 1000;
}

.toolCart.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.toolCart>div {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
}

.toolCart .sideBar {
    padding-right: 10px;
    border-right: 2px solid #b0b0b0;
    margin-right: 15px;

    gap: 5px;
    display: flex;
    flex-direction: column;

}

.toolCart .sideBar>div {
    width: 40px;
}

.toolCart .sideBar>div>img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid black;
}

.homecart {
    /* display: none; */
}

.homecart .game {
    display: flex;
    background-color: #000;
    width: 100%;
    color: #fff;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    align-items: center;
    /* justify-content: center; */
    gap: 15px;
    /* justify-content: space-between; */
    padding-left: 25px;
    /* padding-right: 25px; */
}

.homecart .game .text .p1 {
    font-size: 15px;
    font-weight: bold;
}

.homecart .game .text .p2 {
    font-size: 13px;
    margin-bottom: 2px;
    margin-top: 2px;
}

.homecart .game .text .p3 {
    font-size: 10px;
}

.homecart .game .logo {
    width: 50px;
}

.homecart .game img {
    width: 100%;
}

.w-100 {
    width: 100%;
}

.content-center {
    align-content: center;
}