/*********************************************
* BORDER *************************************
**********************************************/
.bd-b {
    border-width: 0 0 2px 0;
    border-style: solid;
}

.bd-red {
    border-color: #EE0738;
}

.bd-dark-red {
    border-color: #CC0000;
}

.bd-blue {
    border-color: #3697D9;
}

/*********************************************
* BUTTON *************************************
**********************************************/
button {
    cursor: pointer;
}

button[disabled="disabled"] {
    cursor: default;
}

/*********************************************
* FONT FAMILY ********************************
**********************************************/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

/*********************************************
* FONT SIZE **********************************
**********************************************/
h2 {
    font-size: 1.9rem
}

h3 {
    font-size: 1.5rem
}

.font-md {
    font-size: 1.1rem;
}

/*********************************************
* FORM ***************************************
**********************************************/
.form-control-custom {
    position: relative;
}

.form-control-custom .form-control {
    padding-right: 35px;
}

.form-control-custom .form-control-icon {
    color: rgba(0, 0, 0, .7);
    line-height: 1;
    padding-right: inherit;
    position: absolute;
    right: 10px;
    text-align: right;
    top: calc(50% - 0.5em);
    width: 30px;
}

/*********************************************
* MARGIN *************************************
**********************************************/
.mg-0 {
    margin: 0 !important;
}

.mg-v-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mg-v-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mg-r-20 {
    margin-right: 20px !important;
}

.mg-b-10 {
    margin-bottom: 10px !important;
}

.mg-b-40 {
    margin-bottom: 40px !important;
}

.mg-l-10 {
    margin-left: 10px !important;
}

@media (max-width: 575px) {
    .mg-v-40 {
        margin-bottom: initial !important;
        margin-top: initial !important;
    }

    .mg-v-20-xs {
        margin-bottom: 20px !important;
        margin-top: 20px !important;
    }

    .mg-b-40 {
        margin-bottom: initial !important;
    }

    .mg-b-20-xs {
        margin-bottom: 20px !important;
    }
}

/*********************************************
* PADDING ************************************
**********************************************/
.pd-10 {
    padding: 10px !important;
}

.pd-20 {
    padding: 20px !important;
}

.pd-v-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pd-v-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

@media (max-width: 575px) {
    .pd-20 {
        padding: initial !important;
    }

    .pd-0-xs {
        padding: 0px !important;
    }
}

/*********************************************
* SHADOW *************************************
**********************************************/
.shadow {
    -webkit-box-shadow: 0px 1px 5px 0px rgba(170,170,170,1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(170,170,170,1);
    box-shadow: 0px 1px 5px 0px rgba(170,170,170,1);
}

/**********************************************
* WIDTH **************************************
**********************************************/
.w-100p {
    width: 100% !important;
}