.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.w-10{
    width: 10%;
}
.w-15{
    width: 15%;
}
.w-20{
    width: 20%;
}
.h-10{
    height: 10%;
}
.h-15{
    height: 15%;
}
.h-20{
    height: 20%;
}
.h-25{
    height: 25%;
}
.h--10{
    height: 10px;
}
.h--15{
    height: 15px;
}
.h--20{
    height: 20px;
}
.h--25{
    height: 25px;
}
.h--30{
    height: 40px;
}
.h--35{
    height: 45px;
}
.h--40{
    height: 40px;
}
.h--45{
    height: 45px;
}
.h--50{
    height: 50px;
}
.h--55{
    height: 55px;
}

.brand-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.brand-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.brand-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.brand-slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .brand-slider {
    background-color: #27bcfd;
}

input:focus + .brand-slider {
    box-shadow: 0 0 1px #27bcfd;
}

input:checked + .brand-slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Rounded sliders */
.brand-slider.round {
    border-radius: 34px;
}

.brand-slider.round:before {
    border-radius: 50%;
}

.content{
    overflow: hidden;
}