/*== Info Box Addon ==*/

.upstudy-info-box-wrapper {
    display: inline-flex;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0px 0px 140px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: relative;
}
.upstudy-info-box-wrapper .icon-wrapper {
    flex-shrink: 0;
    background: var(--upstudy-primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -60px;
    margin-right: 15px;
}
.icon-row-reverse .upstudy-info-box-wrapper .icon-wrapper {
    margin-right: 0;
    margin-left: 15px;
}
.icon-column .upstudy-info-box-wrapper .icon-wrapper {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 15px;
}
.upstudy-info-box-wrapper .icon-wrapper svg {
    width: 15px;
    height: 15px;
}
.upstudy-info-box-wrapper .info-text {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 30px;
    color: var(--upstudy-heading-color);
}
.upstudy-info-box-wrapper .info-text span {
    color: var(--upstudy-primary-color);
}
.upstudy-info-box-wrapper .info-description-text {
    margin-bottom: 0;
    line-height: 1;
}
/* Custom Link */

.custom-link-wrap a {
    position: relative;
}
.custom-link-wrap a::before {
    position: absolute;
    left: 0;
    bottom: 1px;
    height: 1px;
    width: 100%;
    content: "";
    transform: scale(1);
    background: var(--upstudy-primary-color);
    transition: all 0.3s linear;
}
.custom-link-wrap a:hover::before {
    transform: scale(-1);
}