.max-width-50 {
    max-width: 50%;
    width: 100%;
}

.text-red {
    color: #ff2222;
}

.text-gray {
    color: #939393;
}

.text-dark-red {
    color: #950600;
}

.bg-red {
    background-color: #ff2222;
}

.bg-gray {
    background-color: #939393;
}

.bg-dark-red {
    background-color: #950600;
}

.border-left-dash {
    border-left: 1px dashed #999;
}

.box {
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    padding-top: 10px;
    height: 100%;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}

.box .bottom {
    height: 100%;
    color: #fff;
    padding: 10px;
}

.box p {
    font-size: 15px;
}

@media only screen and (max-width: 990px) {
    .md-hide-border-left {
        border-left: unset;
    }
}

@media only screen and (max-width: 767px) {
    .sm-hide-border-left {
        border-left: unset;
    }
}