.main-login-wrapper .modules-wrapper__wrap {
    padding: 7.375rem 0 7.375rem 0;
    height: 100%;
}
.main-login-wrapper .modules-wrapper__title {
    font-size: 1.5rem;
    margin-bottom: 3.3125rem;
    color: #000000;
}
.main-login-wrapper .modules-wrapper__title span {
    color: #4C6EF5;
}
.main-login-wrapper .modules-wrapper__list__items {
    width: 470px;
    background: linear-gradient(to right, #4C6EF5 50%, white 50%);
    background-size: 201% 100%;
    background-position: right bottom;
    transition: all 0.1s ease-out;
    min-height: 75px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.11);
    background-color: #fff;
    border-left: 3px solid #4C6EF5;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    cursor: pointer;
}
.main-login-wrapper .modules-wrapper__list__items__icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.main-login-wrapper .modules-wrapper__list__items__icon img {
    width: 30px;
    height: 30px;
}
.main-login-wrapper .modules-wrapper__list__items__title {
    width: 80%;
}
.main-login-wrapper .modules-wrapper__list__items__name {
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    color: #000000;
}
.main-login-wrapper .modules-wrapper__list__items__desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
}
.main-login-wrapper .modules-wrapper__list__items:hover {
    background-position: left bottom;
}
.main-login-wrapper .modules-wrapper__list__items:hover .modules-wrapper__list__items__name {
    color: #fff;
}
.main-login-wrapper .modules-wrapper__list__items:hover .modules-wrapper__list__items__icon {
    position: relative;
}

.main-login-wrapper .modules-wrapper__list__items:hover .modules-wrapper__list__items__icon img {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
    width: 30px;
    height:30px;
}
.main-login-wrapper .modules-wrapper__list__items:hover .modules-wrapper__list__items__desc {
    color: #fff;
}
*::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #555;
}

/* Tablet landscape */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .main-login-wrapper .modules-wrapper__wrap {
        padding: 7.375rem 15px 7.375rem 15px;
    }
    .main-login-wrapper .modules-wrapper__list__items {
        width: 100%;
    }
}

/* Medium screens */
@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .main-login-wrapper .modules-wrapper__wrap {
        padding: 7.375rem 15px 7.375rem 15px;
    }
    .main-login-wrapper .modules-wrapper__list__items {
        width: 100%;
    }
}

/* Tablet portrait and mobile */
@media only screen and (max-width: 767px) {
    .main-login-wrapper .modules-wrapper__wrap {
        padding: 80px 15px 2rem 15px;
    }
    .main-login-wrapper .modules-wrapper__title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .main-login-wrapper .modules-wrapper__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .main-login-wrapper .modules-wrapper__list__items {
        width: 100%;
        min-height: 60px;
        margin-bottom: 0;
    }
    .main-login-wrapper .modules-wrapper__list__items__icon {
        width: 50px;
        height: 50px;
    }
    .main-login-wrapper .modules-wrapper__list__items__icon img {
        width: 24px;
        height: 24px;
    }
    .main-login-wrapper .modules-wrapper__list__items__title {
        width: calc(100% - 60px);
    }
    .main-login-wrapper .modules-wrapper__list__items__name {
        font-size: 13px;
    }
    .main-login-wrapper .modules-wrapper__list__items__desc {
        font-size: 11px;
        line-height: 1.3;
    }
    .main-login-wrapper .modules-wrapper__list__items:hover .modules-wrapper__list__items__icon img {
        top: 13px;
        left: 13px;
    }
}