/* ////////////////////////////////////////// A HREF //////////////////////////////////////////////////////// */

a {
    text-decoration: none !important;
}

a:link {
    text-decoration: none !important;
}

a:visited {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

a:active {
    text-decoration: none !important;
}

/* ////////////////////////////////////////// BACKGROUND COLOR //////////////////////////////////////////////////////// */

.dark-blue-background {
    background-color: #015490;
}

.light-blue-background {
    background-color: #0170BF;
}

.border-bottom-white {
    border-bottom: solid 1px white; 
}

.border-top-white {
    border-top: solid 1px white; 
}


/* ////////////////////////////////////////// COLOR //////////////////////////////////////////////////////// */

.white {
    color: white !important;
}

.dark-blue {
    color: #015490;
}

.light-blue {
    color: #0170BF;
}


/* ////////////////////////////////////////// COLOR //////////////////////////////////////////////////////// */

.visibility-hidden {
    visibility: hidden;
}

@media all and (max-width: 640px)
{
    .hidden-640 {
        display: none;
    }
}


/* ////////////////////////////////////////// MARGIN-BOTTOM //////////////////////////////////////////////////////// */

.margin-bottom-4 {
    margin-bottom: 4px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

/* ////////////////////////////////////////// MARGIN-TOP //////////////////////////////////////////////////////// */

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-40 {
    margin-top: 40px;
}

/* ////////////////////////////////////////// PADDING //////////////////////////////////////////////////////// */
.no-padding {
    padding: 0px !important;
}

.padding-bottom-7 {
    padding-bottom: 7px;
}

/* ////////////////////////////////////////// TEXT ALIGN RIGHT //////////////////////////////////////////////////////// */
.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

/* ////////////////////////////////////////// WEIGHT //////////////////////////////////////////////////////// */
.weight-300 {
    font-weight: 300;
}

.weight-700 {
    font-weight: 700;
}


.pointer {
    cursor: pointer;
}

.center-align {
    margin-left: auto;
    margin-right: auto;
}