﻿/* Grid */
.sv-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.sv-col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.sv-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.sv-col-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
}

/* Colours */
.text-white{
    color: #fff;
}

.text-white-50 {
    color: #fff;
    opacity: .5;
}

.sv-success {
    color: #40c057 !important;
}

.sv-bg-success {
    background-color: #40c057 !important;
}

.sv-error {
    color: #d61d5c !important;
}

.sv-bg-error {
    background-color: #d61d5c !important;
}

.sv-warning {
    color: #fcaf17 !important;
}

.sv-bg-warning {
    background-color: #fcaf17 !important;
}

.sv-info {
    color: #1cbcaf !important;
}

.sv-bg-info {
    background-color: #1cbcaf !important;
}
/* Text */
.sv-font-large-3 {
    font-size: 4rem !important;
    line-height: 3.5rem;
}

.sv-font-medium-3 {
    font-size: 1.3rem !important;
}

/* Cards */
.sv-card {
    box-shadow: -8px 8px 14px 0 rgb(0 0 0/25%);
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: 0.35rem;
}

.sv-card.btn-card{
    cursor: pointer;
}

.sv-card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.5rem;
}

.sv-card-media {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
}

.sv-card-media-body {
    flex: 1;
}

.head-title{

}

.page-outer{
    height: 100%;
}

.no-results {
    text-align: center;
    margin-top: 28px;
    color: #7b858b;
}

.no-results > .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    border: solid 2px #5ab2ac;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.no-results .icon-cup {
    font-size: 33px;
    line-height: 65px;
    padding: 19px;
}

.no-results .h2 {
    margin-top: 30px;
    font-size: 32px;
    font-weight: 300;
}

.no-results .message {
    width: 600px;
    margin: 18px auto 40px auto;
}


.page-loading {
    background-color: rgba(0,0,0,.2);
    top: 72px;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    overflow: hidden;
    z-index: 100;
    display: none;
}

.loading-circle-small {
    position: absolute;
    top: 10px;
    left: 68px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: solid 7px $white;
    animation: loading-circle-small .8s infinite alternate ease-in-out;
}

@keyframes loading-circle-small {
    from {
        left: 68px;
    }

    to {
        left: 0;
    }
}
