﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
@font-face {
    font-family: 'varelaround-regular';
    src: url('../lib/bootstrap/dist/fonts/varelaround-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'helvetica';
    src: url('../lib/bootstrap/dist/fonts/helvetica.ttf') format('truetype');
}

@font-face {
    font-family: 'helveticaneuemedium';
    src: url('../lib/bootstrap/dist/fonts/helveticaneuemedium.ttf') format('truetype');
}

@font-face {
    font-family: 'sans-serif';
    src: url('../lib/bootstrap/dist/fonts/micross.ttf') format('truetype');
}

@font-face {
    font-family: 'gill sans medium';
    src: url('../lib/bootstrap/dist/fonts/gill sans medium.otf') format('opentype');
}

body {
    /*padding-top: 55px !important;*/
    color: #5D6D7E !important;
    font-family: "varelaround-regular", "helveticaneuemedium", helvetica, 'gill sans medium', sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 25px;
    letter-spacing: 0.5px;
}

html, body {
    background: #EEEEEE;
    /*background: #EAF2F8;*/
    /*background: #ECF0F1;*/
    min-height: 100%;
    height: 100%;
    font-weight: 200;
    overflow: hidden !important;
}

/* navbar */
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #101010;
}
.bg-nav {
    background-color: #5D6D7E !important;
}
.navbar-inverse {
    background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
    background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
    background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    border-radius: 0px !important;
    border-color: #080808;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #080808;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .active > a {
    background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
    background-repeat: repeat-x;
    box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
}
/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* BASIC */

a {
    color: black;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid black;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset] {
    background-color: black;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgb(40 40 39 / 40%);
    /*box-shadow: 0 10px 30px 0 rgba(231,202,130,0.4);*/
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        background-color: #777777;
        ;
    }

    input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text], input[type=password], input[type=email] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    /*text-align: left;*/
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -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;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus {
        background-color: #fff;
        border-bottom: 2px solid #cccccc;
    }

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        /*-webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);*/
        -webkit-transform: none;
        transform: none;
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: black;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }

/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width: 20%;
    height: 20%;
    /*opacity:0.2;*/
}

.thead-openorders {
    color: #fff;
    background-color: #06917e;
    border-color: #06917e;
}

/*[data-toggle="collapse"] .fa:before {
    content: "\f139";
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f13a";
}*/

.cardwrapper .cardview {
    margin-bottom: 10px;
    box-shadow: 3px 3px 15px #666;
    cursor: pointer;
    /*Opacity*/
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}
/*Fade all the DIV when user hovers on any div*/
.cardwrapper:hover .cardview {
    zoom: 1;
    filter: alpha(opacity=55);
    opacity: 0.70;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    border-radius: 5px !important;
}

.card {
    background: #fff;
    margin-bottom: 5px;
    border: medium none;
    box-shadow: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 5px !important;
    box-shadow: 1px 1px 3px #666;
    cursor: pointer;
    /*Opacity*/
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}
/*Fade out the particular DIV when user hover on that DIV*/
.cardwrapper .cardview:hover {
    box-shadow: 3px 3px 15px #666;
    cursor: pointer;
    /*Opacity*/
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
    padding: 0px !important;
    border-radius: 5px !important;
    border: none;
}

.cardview.card > .pannel-header {
    border: none;
    color: inherit;
    border-radius: 3px !important;
    padding-bottom: 0px !important;
}

.pannel-header:first-child {
    border: none;
    padding-bottom: 0px !important;
    border-radius: 3px !important;
    padding-left: 10px;
    padding-right: 10px;
}

/*.card-danger > .pannel-header, .card-info > .pannel-header, .card-success > .pannel-header, .card-warning > .panel-header, .card-primary > .panel-header, .card-inverse > .panel-header {
    border: none;
    margin: -15px -15px 0;
    padding: 15px 30px;
    border-radius: 5px;
}*/

.card-warning > .pannel-header {
    background-color: #fcb03b;
}

.card-danger > .pannel-header {
    background-color: #a94442;
}

.card-success > .pannel-header {
    background-color: #3cb878;
}

.card-primary > .pannel-header {
    background-color: #566FC9;
}

.card-info > .pannel-header {
    background-color: #17a2b8 !important;
}

.card-inverse > .pannel-header {
    background-color: gainsboro;
    color: #2f2c2c !important;
}

.txt-light {
    color: #fff !important;
}

h6, .card-title {
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6, .card-title {
    font-family: "gill sans medium", sans-serif;
    color: #2f2c2c;
    letter-spacing: 0.5px;
}

.panel-body {
    padding: 5px 10px 5px 10px !important;
}

.no-rightleftpadding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.no-topbottompadding {
    padding-top: 0px !important;
    padding-bottom: inherit !important;
}

.text-xsmaller {
    font-size: x-small;
}

.text-smaller {
    font-size: smaller;
}

.text-small {
    font-size: small;
}

.text-medium {
    font-size: medium;
}

.text-large {
    font-size: large;
}

.text-larger {
    font-size: x-large;
}

.text-xlarger {
    font-size: xx-large;
}

.bg-dark {
    background-color: #343a40 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.text-white {
    color: #fff;
}

.font-italic {
    font-style: italic;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-info-semi-dark {
    color: #fff;
    background-color: #2d536d !important;
    border-color: #2d536d;
}

    .btn-info-semi-dark:active, .btn-info-semi-dark:hover {
        color: #fff;
        background-color: #2d536d;
        background-image: none;
        border-color: #2d536d;
    }

.btn-info-dark {
    color: #fff;
    background-color: #173d4c !important;
    border-color: #173d4c;
}

.vertical-centered {
    position: relative;
    float: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.left-ofset {
    margin-left: 1%;
}

/*Blink icon animation form new order*/
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Firefox */
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Webkit */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
.blink-image {
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    /* order: name, direction, duration, iteration-count, timing-function */
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
    content: url("/images/new-order-blink.svg");
}

@keyframes loader-animation {
    0% {
        width: 0%;
    }

    49% {
        width: 100%;
        left: 0%
    }

    50% {
        left: 100%;
        width: 0;
    }

    100% {
        left: 0%;
        width: 100%
    }
}

.loader {
    height: 3px;
    width: 100%;
}

    .loader .bar {
        position: relative;
        height: 3px;
        background-color: brown;
        animation-name: loader-animation;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

/* Paste this css to your style sheet file or under head tag */
/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

/*.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../images/preloader_11.gif') center no-repeat #fff;
}*/

/* Gradient color1 - color2 - color1 */

hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
    background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
    background-image: -ms-linear-gradient(left, #ccc, #333, #ccc);
    background-image: -o-linear-gradient(left, #ccc, #333, #ccc);
}

/*.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: #f5f5f5;
}*/

/*dynamically calculates height,resize browser window and adds Scrollbar's(vertical & horizontal) to the current window*/
.scrollable-body {
    overflow: auto;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.sweet-alert .sa-confirm-button-container {
    display: block !important;
    position: relative;
}
.swbtn {
    display: inline-block;
    width: 150px !important;
    height: 60px !important;
}

.swloader {
    display: block !important;
    /*background-image: url("/images/index.dual-ring-loader.svg") !important;*/
    background-image: url("/images/index.palette-rotating-ring-loader.svg") !important;
    width: 80px !important;
    height: 80px !important;
}

.highlight td {
    border-bottom-color: black !important;
    border-bottom-width: medium !important;
}
