* {
    border-radius: 0 !important;
}

body {
    background-color: hsla(210, 8%, 95%, .6);
    color: #212529;
    font-family: 'Nunito', 'Battambang';
}

.load-more {
    width: 150px;
    margin: auto;
    border: 1px solid #eee;
    padding: 5px;
    cursor: pointer;
    border-radius: 50px !important;
    box-shadow: 0 5px 5px #aaa;
}

.c-pointer{
    cursor: pointer;
}

.btn-primary {
    background-color: #fc503c !important;
    border-color: #f94530;
}

.btn-primary:hover {
    background-color: #f52b14 !important;
    border-color: #f94530;
}

.text-primary {
    color: #f52b14 !important;
}

.brand {
    color: #fc503c;
}

.mt-90 {
    padding-top: 90px;
}

.w-150 {
    width: 150px;
}

a {
    color: #212529;
}

a:hover {
    text-decoration: none;
    color: #212529;
}

ul {
    margin: 0;
}

nav .brand {
    padding-left: 20px;
}

nav {
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
    position: fixed;
    width: 100%;
    height: 73px;
    margin-bottom: 80px;
    z-index: 12;
}

nav a {
    color: #212529;
    font-weight: bold;
}

.router-link-active {
    color: #fc503c;
}


nav ul {
    display: inline-block;
}

nav ul li {
    list-style: none;
    display: inline;
}

nav ul li a {
    padding: 0 10px;
}

nav ul li a:hover {
    color: #fc503c;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #82828220;
    border-radius: .25rem;
    box-shadow: 0px 8px 8px 0px #e2e1e1;
}

.card-title {
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    float: left;
    width: 100%;
}

footer {
    text-align: center;
    width: 100%;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: none;
}

input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
    border: 1px solid #f52b14 !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #f94530;
    background-color: #f94530;
}

.select2 {
    width: 100% !important;
}

.table.table-sm .btn-group-sm > .btn, .btn-sm {
    padding: .12rem .4rem;
    cursor: pointer;
}

.swal2-icon {
    border-radius: 50px !important;
}

.swal2-icon.swal2-question {
    border-color: #fc6354 !important;
    color: #fc503c !important;
}

.swal2-styled:focus{
    box-shadow: none !important;
}

input[aria-invalid="true"] {
    border: 1px solid red;
}

@media screen and (max-width: 772px) {
    .modal-body .col-md-3 {
        margin: 0;
        padding: 0 15px;
    }
}

/*Loading*/
.load-bar {
    position: relative;
    margin-top: -1px;
    width: 100%;
    height: 4px;
    background-color: #fdb8b0;
    overflow-x: hidden;
}

.bar {
    content: "";
    display: inline;
    position: absolute;
    width: 0;
    height: 100%;
    left: 100%;
    text-align: center;
    background-color: #ff2c2c;
    background-image: linear-gradient(to right, #fd9f94, #ff2c2c, #fd9f94);
    -webkit-animation: loading 2s linear infinite;
    animation: loading 2s linear infinite;
}

@-webkit-keyframes loading {
    from {
        left: 0;
        width: 0;
        z-index: 100;
    }
    30% {
        left: 0;
        width: 40%;
        z-index: 10;
    }
    to {
        right: 0;
        width: 40%;
    }
}

@keyframes loading {
    from {
        left: 0;
        width: 0;
        z-index: 100;
    }
    30% {
        left: 0;
        width: 40%;
        z-index: 10;
    }
    to {
        right: 0;
        width: 40%;
    }
}

/*END LOADING*/
