.dashboard {
    overflow: visible;
    background-color: #F7F9FB;
    border-radius: 50px;
}

.dashboard__wrapper {
    display: flex;
    justify-content: left;
    margin: 0 auto;
    padding: 0 30px;
}

@media (min-width: 768px) {
    .dashboard__wrapper {
        padding: 0 60px;
    }
}

@media (min-width: 1024px) {
    .dashboard__wrapper {
        padding: 0 80px;
    }
}

.dashboard__swiper--wrapper {
    padding: 0 30px !important;
    user-select: none;
}

@media (min-width: 768px) {
    .dashboard__swiper--wrapper {
        padding: 0 60px !important;
    }
}

@media (min-width: 1024px) {
    .dashboard__swiper--wrapper {
        padding: 0;
        margin: 0 80px !important;
        padding: 0 80px !important;
        max-width: 1440px;
        margin: 0 auto !important;
    }
}

.dashboard__wrapper-wide {
    max-width: 1440px;
    margin: 0 auto !important;
    background-color: #F7F9FB;
}

@media (min-width: 1024px) {
    .dashboard__wrapper-wide {
        justify-content: space-between;
        margin: 0 90px;
    }
}

.dashboard__wrapper-wide .dashboard__calculate {
    display: none;
}

@media (min-width: 1024px) {
    .dashboard__wrapper-wide .dashboard__calculate {
        display: block;
        margin: 30px 0;
        height: max-content;
        align-self: center;
    }
}

.dashboard__title {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0;
    text-align: left;

    display: block;
    margin-top: 0;
    margin-bottom: 0.83em;
    line-height: 1.2
}

@media (min-width: 1024px) {
    .dashboard__title {
        font-size: 40px;
    }
}

.dashboard__title img {
    height: 16px;
    margin-left: 5px;
    align-items: center;
}

@media (min-width: 1024px) {
    .dashboard__title img {
        height: 25px;
    }
}

.dashboard__calculate {
    cursor: pointer;
    font-size: 14px;
    padding: 15px 20px;
    background-color: #0BA6F5;
    margin: 30px auto;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
}

@media (min-width: 1024px) {
    .dashboard__calculate {
        display: none;
    }
}

video::-webkit-media-controls {
    display: none !important;
}