﻿

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .main_title {
        font-size: 2.0em;
        font-weight: bold;
    }

    .input-group {
        position: relative;
        display: inline-block;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .main_title {
        font-size: 2.0em;
        font-weight: bold;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main_title {
        font-size: 2.0em;
        font-weight: bold;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main_title {
        font-size: 2.0em;
        font-weight: bold;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .main_title {
        font-size: 3.5em;
        font-weight: bold;
    }
}

/*  Needed for charts and
    ##Device = Desktops
    ##Screen = 1281px to higher resolution desktops
*/
/*@media (min-width: 1281px) {
    .r_chart {
        margin-top: 1px !important;
        height: 700px !important;
        width: 900px !important;
    }

    .d_chart {
        margin-top: 10px !important;
        height: 311px !important;
        width: 400px !important;
    }
}*/

/*
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
*/
/*@media (min-width: 1025px) and (max-width: 1280px) {
    .r_chart {
        margin-top: 1px !important;
        margin-bottom: 10px !important;
        height: 700px !important;
        width: 900px !important;
    }

    .d_chart {
        margin-top: 1px !important;
        margin-bottom: 10px !important;
        height: 311px !important;
        width: 400px !important;
    }
}*/

/*
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
*/
/*@media (min-width: 768px) and (max-width: 1024px) {
    .r_chart {
        margin-top: 1px !important;
        margin-bottom: 10px !important;
        height: 470px !important;
        width: 600px !important;
    }

    .d_chart {
        margin-top: 1px !important;
        margin-bottom: 10px !important;
        height: 311px !important;
        width: 400px !important;
    }
}*/

/*
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
}

/*
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
    
}

/*
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
    
}


/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    /*max-width: 280px;*/
    resize: none;
    overflow: auto;
}

hr {
    border-color: whitesmoke;
}

h5.register {
    text-align: justify;
    text-transform: none;
    text-indent: 20px;
    font-size: 1.2em;
}

.tab {
    text-indent:20px;
}

.checkbox label {
    margin-left: 15px;
    margin-right: 20px !important;
}

.btn-3 {
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    background-color: #ff5e14;
    color: #ffffff !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.btn-3:hover {
    background-color: transparent;
    border-color: #ff5e14;
    color: #ff5e14;
}

.label1:before {
    content: "*";
    color: red
}
.label2:before {
    content: "**";
    color: red
}
.label3:before {
    content: "***";
    color: red
}

.emailopt {
    display: none;
    position: absolute;
    top: 3px;
    left: -680px;
    visibility: collapse;
}

.validation_err {
    font-size: 0.9em !important;
    font-style: italic !important;
    color: #ff5e14 !important;
    text-align: left !important;
    margin-left: 5px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.modal-title {
    color: #333333 !important;
}

.modal-dialog {
    top: 10%;
}

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: #ff5e14;
    color: #eeeeee;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .scroll-top-wrapper:hover {
        background-color: #888888;
    }

    .scroll-top-wrapper.show {
        visibility: visible;
        cursor: pointer;
        opacity: 1.0;
    }

    .scroll-top-wrapper i.fa {
        line-height: inherit;
    }

.spinner {
    display: inline-block;
    opacity: 0;
    width: 0;
    -webkit-transition: opacity 0.25s, width 0.25s;
    -moz-transition: opacity 0.25s, width 0.25s;
    -o-transition: opacity 0.25s, width 0.25s;
    transition: opacity 0.25s, width 0.25s;
}

.has-spinner.active {
    cursor: progress;
    margin-right: 5px;
}

.has-spinner.active .spinner {
    opacity: 1;
    width: auto;  /*This doesn't work, just fix for unkown width elements*/ 
    margin-right: 5px;
}

.has-spinner.btn-mini.active .spinner {
    width: 10px;
    margin-right: 5px;
}

.has-spinner.btn-small.active .spinner {
    width: 13px;
    margin-right: 5px;
}

.has-spinner.btn.active .spinner {
    width: 16px;
    margin-right: 5px;
}

.has-spinner.btn-large.active .spinner {
    width: 19px;
    margin-right: 5px;
}

.input-group {
    margin-bottom: 10px;
}

/* footer section*/
.footer_section {
    font-size: 0.75em;
}

.footer_section p {
    color: rgba(254, 254, 255, 0.5);
}

.footer_section a {
    color: rgba(254, 254, 255, 0.5);
}