/**
 * Created by WM Haigh.
 * User: WMH
 * Date: 10/11/2015
 * Time: 8:41 AM
 *
 * This document will set the defaults for all documents here after.
 */

{
    box-sizing: border-box;
}

.FA{
    line-height: 30px;
    padding: 0 10px;
}

.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}


/*
    Centring divs in the screen using
    the "viewport" as it reference.
*/
.centred {
    /*background: black;*/
    /*color: white;*/
    border-radius: 1em;
    padding: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}


.cl_Blue{
    background-color: lightblue;
}


.myContainerMain{
    padding: 5%;
    margin-top: 5%;
}

/**
*   Text modifications under here
 */

.txt_white{
    color: white;
}

.txt_yellow{
    color: yellow;
}

.thankYou{
    font-style: italic;
    font-weight: bolder;
    text-align: center;
}

.signup_error{
    font-weight: bolder;
    color: red;
}

.signup_success{
    font-weight: bolder;
    color: green;
}

.txt_bold{
    font-weight: bolder;
}

.nav_menu{
    text-align: center;
}

.nav_menu a {
    padding-left: 10px;
}

.main_menu{
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 10px;
}
textarea::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #001333;
    background-image: linear-gradient(#576ec1, #001333);
}
textarea::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

textarea::-webkit-scrollbar-thumb {
    background: #478;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
textarea::-webkit-scrollbar-thumb:hover {
    background: #367;
}


.disable-selection{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select:none;
    user-select:none;
    -o-user-select:none;
}
