﻿
/* override small text border */
.txt-f--sm {
    border: 3px solid #091F2F;
}

.sel-f--thin {
    border: 1px solid #091f2f;
}

.sel-c--thin:after {
    border-left: 1px solid #091f2f;
    top: 2px;
    bottom: 2px;
    right: 2px;
}

/* adds spacing between buttons when stacked */
@media (max-width:840px) {
    .btn {
        margin-bottom: 5px;
    }
}

/* add required flag before or at the end of a label */
.cob-req-b:before {
    content: "* ";
    color: #FB4D42;
}

.cob-req-a:after {
    content: " *";
    color: #FB4D42;
}
/* end required flag */

/* create a smaller version of the check-box */
.cb-f--sm {
    height: 20px;
    width: 20px;
}

@media screen and (min-width:768px) {
    .cb-f--sm {
        height: 30px;
        width: 30px;
    }
}

.cb-f--sm:before {
    height: 20px;
    width: 20px;
}

@media screen and (min-width:768px) {
    .cb-f--sm:before {
        height: 30px;
        width: 30px;
    }
}

.cb-f--sm:checked:before {
    background: #fff url(../Cob_Images/check.svg) no-repeat 50%;
}
