/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22.04.2020, 19:16:05
    Author     : PASHA
*/
/******************************************************************************/
/**********Панель**************************************************************/
.sb-panel {
    text-align: center;
    background-color: #fff;
    height: 100%;
    position: relative;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    -webkit-box-shadow: 0 10px 30px 4px rgba(0,0,0,.15);
    box-shadow: 0 10px 30px 4px rgba(0,0,0,.15);
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}
.sb-panel:hover {
    background-color: #3853bc;
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 50px 30px -40px rgba(56,83,188,.6);
    box-shadow: 0 50px 30px -40px rgba(56,83,188,.6);
}

.sb-panel .sb-panel-body {
    padding: 1.3rem 2rem;
    height: inherit;
    position: inherit;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-direction: column;
    flex-direction: column;
}
.sb-panel .sb-panel-icon {
    margin: 0 auto .5rem;
    color: #0f66dd;
}
.sb-panel:hover .sb-panel-icon {
    color: #fc332f;
}
.sb-panel .sb-panel-title {
    font-weight: 500;
    letter-spacing: .9px;
    line-height: 1.45;
    font-size: 1.05rem;
    color: #fd5f00;
    margin: 0 auto .4rem;
}
.sb-panel .sb-panel-text {
    font-weight: 400;
    letter-spacing: .9px;
    line-height: 1.45;
    font-size: .85rem;
    color: #939cb0;
    margin: 0 auto;
}
.sb-panel:hover .sb-panel-text {
    color: rgba(255,255,255,.8);
}
.sb-panel .sb-panel-link {
    margin: auto auto 0;
    padding-top: .6rem;
}
.sb-panel-link .sb-btn-link {
    font-size: .845rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .8px;
}
.sb-panel-link .sb-btn-link.color-red:hover {
    color: #eb1e1a!important;
}
/********************************************************************/
