﻿/*
    File to declare template constants
        - colors

    https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
*/

:root {
    --dark-blue: #001627;
    --orange: #FF6400;
    --white: #fff;
    --gray-backgroud: rgb(53,51,49,.1);
    --gray-text: rgb(53,51,49,.5);
}

._btn-primary {
    color: var(--white) !important;
    font-weight: bold;
}

.margin-top{
    margin-top: 15px;
}

.margin-text-bottom {
    margin-bottom: 1em;
}

.float-left {
    float: left;
}

.float-left-important {
    float: left !important;
}