.line-clamp{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 4.5rem;
    line-height: 1.45rem;
}

.newsletter-form .checkbox-label input[type="checkbox"], .newsletter-form .radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.newsletter-form .checkbox-label, .newsletter-form .radio-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: normal;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.newsletter-form .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #FFF;
    border: 1px solid #DDDDDD;
}
.newsletter-form .radio-label .checkmark{
    border-radius: 50%;
}

.newsletter-form .checkbox-label:hover input ~ .checkmark, .newsletter-form .radio-label:hover input ~ .checkmark {
    background-color: #eee;
}

.newsletter-form .checkbox-label input:checked ~ .checkmark, .newsletter-form .radio-label input:checked ~ .checkmark {
    background-color: #408cca;
}

.newsletter-form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.newsletter-form .checkbox-label input:checked ~ .checkmark:after, .newsletter-form .radio-label input:checked ~ .checkmark:after {
    display: block;
}

.newsletter-form .checkbox-label .checkmark:after {
    left: 8px;
    top: 4px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.newsletter-form .radio-label .checkmark:after {
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.color-1{
    background-color:#43a047 !important;
}
.color-2{
    background-color:#0264ac !important;
}
.color-3{
    background-color:#43a2d1 !important;
}
.color-4{
    background-color:#d6a91d !important;
}
.color-5{
    background-color:#894086 !important;
}
.color-6{
    background-color:#db8a3a !important;
}
.color-7{
    background-color:#c43226 !important;
}
.border-color-1{
    border-color: #43a047 !important;
}
.border-color-2{
    border-color: #0264ac !important;
}
.border-color-3{
    border-color: #43a2d1 !important;
}
.border-color-4{
    border-color: #d6a91d !important;
}
.border-color-5{
    border-color: #894086 !important;
}
.border-color-6{
    border-color: #db8a3a !important;
}
.border-color-7{
    border-color: #c43226 !important;
}

.border-bottom{
    border-bottom: 1px solid #F3F4F6;
}

.text-white{
    color:#FFF;
}

.padding-x-1{
    padding: .5rem 1rem;
}

.background-gray-100{
    background-color: #F3F4F6 !important;
}

.background-gray-200{
    background-color: #E5E7EB !important;
}

.cs-tags{
    display: flex;
    flex-wrap: wrap;
}
.cs-tags li{
    display: block;
    margin: 0 5px 5px 0!important;
}
.cs-tags li label{
    display: block;
    position: relative;
}
.cs-tags li a, .cs-tags li span{
    pointer-events: auto;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    border: 1px solid rgba(75, 85, 99, 1);
    font-size: 16px;
    color: #666;
    display: block;
}

.cs-tags li input{
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    display: block;
}
.cs-tags li a:hover,
.cs-tags li span:hover{
    text-decoration: none;
    background-color: rgba(243, 244, 246, 1);
}

.cs-tags li input:checked + span{
    background: rgba(75, 85, 99, 1);
    color: #fff;
}