.no-padding{
    padding-left: 8px;
    padding-right: 8px;
}

#reports-page{
    width: 96%;
    margin: 0 auto;
    display: block;
    padding-top: 30px;
}

.reports-page h2{
    color: #154873;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.reports-page .sub-title{
    padding-bottom: 20px;
}

.reports-page h2 span{
    font-weight: 300;
}

.outer-box-container{
    margin: 35px auto;
    width: 95%;
    padding: 40px 20px;
    position: relative;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(154deg, rgba(255,255,255,1) 0%, rgba(214,221,227,1) 100%);
    background: -webkit-linear-gradient(154deg, rgba(255,255,255,1) 0%, rgba(214,221,227,1) 100%);
    background: linear-gradient(154deg, rgba(255,255,255,1) 0%, rgba(214,221,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#d6dde3",GradientType=1);
}

.icon-avatar{
    position: absolute;
    top:-35px;
    left: -35px;
    width: 70px;
}

.user-report-container{
    background-color: #ffffff;
    height: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.12);
}

.user-body{
    padding: 35px 10px 30px 10px;
}

.user-report-container h4, .user-bank-container h4{
    color: #474747;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    height: 60px;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.user-bank-container h4{
    height: auto;
    padding-bottom: 15px;
}

.avatar-user{
    width: 70%;
}

/* RADIO BUTTON STYLE */

.user-radio{
    margin-top: 45px;
}

.user-radio div{
    display: inline-block;
}

.user-radio .type-radio{
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    display: block;
    padding-bottom: 20px;
}

.user-radio input[type='radio'] {
    display: none;
}

.user-radio label:before {
    content: " ";
    display: block;
    position: relative;
    width: 45px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    cursor: pointer;
    background-color: #E2E9ED;
    box-shadow: 0px 15px 12px -10px rgba(0,0,0,0.3);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.user-radio label {
    position: relative;
}

.user-radio label input[type='radio']:checked+span {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    background-color: #154873;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.user-radio label:hover:before{
    box-shadow: 0px 25px 15px -15px rgba(0,0,0,0.3);
    transform: translate(0px, -2px) scale(1.03);
    background-color: #477B90;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.user-radio label:hover input[type='radio']:checked+span {
    box-shadow: none !important;
    transform: translate(0px, -2px) scale(1.03);
    /* background color */
    -webkit-transition: background-color 0.4s ease;
    -ms-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
    /* translate */
    -webkit-transition: translate 0.4s ease;
    -ms-transition: translate 0.4s ease;
    transition: translate 0.4s ease;
    /* scale */
    -webkit-transition: scale 0.4s ease;
    -ms-transition: scale 0.4s ease;
    transition: scale 0.4s ease;
}

/* CHECKBOX STYLE */
.user-checkbox .type-radio{
    display: block;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    padding-top: 10px;
    height: 50px;
}

.user-checkbox .checkbox-container{
    display: inline-block;
    padding-bottom: 20px;
}

.user-checkbox input[type=checkbox], .csv-checkbox input[type='checkbox']{
    display: none;
}

.user-checkbox label:before {
    content: "\2714";
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    cursor: pointer;
    vertical-align: bottom;
    color: transparent;
    background-color: #E2E9ED;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.user-checkbox label:hover:before{
    background-color: #477B90;
}

.user-checkbox label input[type='checkbox']:not(:checked)+span {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transition: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.user-checkbox label input[type='checkbox']:checked+span {
    border-radius: 6px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50px;
    display: block;
    background-color: #154873;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transition: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: none;
    color: #ffffff;
}

.user-checkbox .checkbox-container{
    padding-left: 5px;
    padding-right: 5px;
}

/* BANK */
.user-bank-container{
    background-color: #ffffff;
    padding: 20px 30px 30px 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.12);
    margin-top: 30px;
}

.user-bank-container .form-control{
    height: 260px;
    background: rgb(255,255,255);
    background: -webkit-linear-gradient(top left, rgba(255,255,255,1) 0%, rgba(222,229,234,1) 100%);
    background: -o-linear-gradient(top left, rgba(255,255,255,1) 0%, rgba(222,229,234,1) 100%);
    background: linear-gradient(to bottom right, rgba(255,255,255,1) 0%, rgba(222,229,234,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#dee5ea",GradientType=1);
}

.user-bank-container h4 span{
    color: #9F9F9F;
    font-weight: 400;
}

.user-bank-container button{
    background-color: #2C5A81;
    color: #ffffff;
    font-size: 18px;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.user-bank-container button:hover{
    background-color: #154873;
    color: #ffffff;
    font-size: 18px;
}

.user-bank-container .form-group .form-control option{
    padding: 3px;
    font-size: 15px;
}
/* CHART SECTION*/
.user-chart-container{
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.12);
    margin-top: 20px;
}

.time-frame input{
    display: inline-block;
    width: initial;
    text-align: center;
}

.date-range label h6{
    display: inline-block;
}

.date-range label input{
    margin-left: 5px;
    margin-right: 15px;
    width: 150px;
}

.date-range .clear-dates{
    background-color: #C77580;
    border: none;
    border-radius: 5px;
    outline: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease;
    width: 30px;
}

.date-range .settings-button{
    width: 36px;
    background-color: #E3E3E3;
    border: none;
    border-radius: 5px;
    outline: none;
    margin-left: 15px;
    height: 31px;
    position: absolute;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.date-range .settings-button i{
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
}
.date-range .settings-button:hover{
    background-color: #154873;
}

.settings-button svg{
    position: absolute;
    top: 3px;
    left: 4px;
}

.settings-container{
    background-color: #fff;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}

.collapsing {
    transition: height 0.6s;
}

#typeSettings .settings-container h5{
    display: inline-block;
    color: #87A0B5;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
}

.settings-container button{
    display: inline-block;
    color: #747474;
    background: none;
    outline: none;
    border: none;
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

.date-range .clear-dates:hover{
    background-color: #A93A4A;
}

.date-range .clear-dates .fa-times{
    font-size: 12px;
    margin-top: 5px;
    opacity: .8;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease;
}

.date-range .clear-dates:hover .fa-times{
    opacity: 1;
}

.chart-header-container{
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.12);
    float: none !important;
}

.chart-header{
    padding: 15px 30px;
    position: relative;
}

.chart-header input{
    width: 60px;
    background-color: #EFEFEF;
    display: inline-block;
    text-align: center;
    font-size: 13px;
}

.chart-header-description{
    background-color: #809AB0;
    color: #fff;
    text-align: center;
    padding: 10px 7px;
}

#typeSettings{
    padding: 0 7px;
}

#typeSettings h5{
    padding-top: 17px;
    padding-bottom: 13px;
    margin: 0;
}

.chart-header-description h5{
    font-size: 14px;
}

.chart-header-description h5 span{
    font-weight: 900;
}

.chart-header-container .chart-header  label{
    margin-bottom: 0;
}

.button-back-container{
    background-image: url('https://gravyty.s3.amazonaws.com/img/Manager+Dashboard/Report_Page/button-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 35%;
    position: absolute;
    right: 0;
    height: 100%;
    bottom: 0;
}

.button-back-container button{
    position: absolute;
    right: 30px;
    top: 15px;
    padding: 8px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    border: none !important;
    color: #ffffff;
    box-shadow: 0px 10px 8px -4px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease;
    background: rgb(86,129,165);
    background: -moz-linear-gradient(154deg, rgba(86,129,165,1) 0%, rgba(21,72,115,1) 100%);
    background: -webkit-linear-gradient(154deg, rgba(86,129,165,1) 0%, rgba(21,72,115,1) 100%);
    background: linear-gradient(154deg, rgba(86,129,165,1) 0%, rgba(21,72,115,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5681a5",endColorstr="#154873",GradientType=1);
}

.deselect-user{
    padding: 8px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    border: none !important;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-back-container button[disabled]{
    background: rgb(182,189,195);
    background: -moz-linear-gradient(154deg, rgba(182,189,195,1) 0%, rgba(95,123,147,1) 100%);
    background: -webkit-linear-gradient(154deg, rgba(182,189,195,1) 0%, rgba(95,123,147,1) 100%);
    background: linear-gradient(154deg, rgba(182,189,195,1) 0%, rgba(95,123,147,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b6bdc3",endColorstr="#5f7b93",GradientType=1);
    box-shadow: none;
    cursor: none;
}

.button-back-container button:hover{
    transform: scale(1.05);
    box-shadow: 0px 25px 15px -15px rgba(0, 0, 0, 0.3);
}

.button-back-container button[disabled]:hover{
    transform: scale(1);
    box-shadow: none;
    cursor: not-allowed;
}

.header-chart,
.csv-date-header,
.csv-options-header,
.user-header{
    background-color: #154873;
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
}

.header-chart h5,
.csv-date-header h5,
.csv-options-header h5,
.user-header h5{
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

.user-header h5{
    font-size: 18px;
}

.header-chart h5 span,
.csv-date-header h5 span,
.csv-options-header h5 span,
.user-header h5 span{
    font-weight: 300;
}

/* CSV */
.download-csv{
    margin-top: 30px;
    padding: 14px 34px;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    border: none !important;
    color: #ffffff;
    box-shadow: 0px 10px 8px -4px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color:  #2C5A81;
}

.download-csv[disabled]{
    box-shadow: none;
    cursor: none;
    background-color: #B1BAC2;
}

.download-csv:hover{
    background-color: #154873;
    transform: scale(1.05);
    box-shadow: 0px 25px 15px -15px rgba(0, 0, 0, 0.3);
}

.download-csv[disabled]:hover{
    transform: scale(1);
    background-color: #B1BAC2;
    box-shadow: none;
    cursor: not-allowed;
}
/* Chart Style */
#firstDraftUsageChart, #firstDraftTypeChart{
    height: 380px !important;
    margin: 0 auto;
}

#giftsBarChart, #avgGiftBarChart, #numBarChart{
    margin: 0 auto;
    height: 400px !important;
}

#yoyOutreachChart{
    height: 471px !important;
    margin: 0 auto;
}

#avgGiftBarChartCol, #numBarChartCol{
    display: none;
}

.chart-body{
    padding: 20px 25px 15px 25px;
}
/*Org Dropdown*/
.org-dropdown{
    padding-bottom: 30px;
}

/* Chart Buttons */
.chart-buttons{
    text-align: center;
    padding-top: 5px;
    display: none;
}

.button-container{
    display: inline-block;
    margin: 10px 10px;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 10px;
    height: 45px;
    width: 160px;
    font-family: 'Lato', sans-serif;
}

.button-container .button{
    height: 40px;
    width: 160px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-box-shadow: 1px 2px 4px -1px rgba(60, 60, 60, 0.64);
    box-shadow: 1px 2px 4px -1px rgba(60, 60, 60, 0.64);
}

.button-container .button.front{
    z-index: 10;
    text-transform: uppercase;
    color: #ffffff;
}

.button-flip-vertical .front{
    background: rgb(20,86,136);
    background: -moz-linear-gradient(100deg, rgba(20,86,136,1) 0%, rgba(71,123,144,1) 100%);
    background: -webkit-linear-gradient(100deg, rgba(20,86,136,1) 0%, rgba(71,123,144,1) 100%);
    background: linear-gradient(100deg, rgba(20,86,136,1) 0%, rgba(71,123,144,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#145688",endColorstr="#477b90",GradientType=1);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button-flip-vertical:hover .front{
    font-weight: 800;
    color: #145688;
    transform: scale(1.05);
    background: rgb(219,225,230);
    background: -moz-linear-gradient(90deg, rgba(219,225,230,1) 0%, rgba(125,152,175,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(219,225,230,1) 0%, rgba(125,152,175,1) 100%);
    background: linear-gradient(90deg, rgba(219,225,230,1) 0%, rgba(125,152,175,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbe1e6",endColorstr="#7d98af",GradientType=1);
}

.flip-card-active{
    color: #145688 !important;
    font-weight: 800 !important;
    transform: scale(1.05) !important;
    background: rgb(219,225,230) !important;
    background: -moz-linear-gradient(90deg, rgba(219,225,230,1) 0%, rgba(125,152,175,1) 100%) !important;
    background: -webkit-linear-gradient(90deg, rgba(219,225,230,1) 0%, rgba(125,152,175,1) 100%) !important;
    background: linear-gradient(90deg, rgba(219,225,230,1) 0%, rgba(125,152,175,1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbe1e6",endColorstr="#7d98af",GradientType=1);
}

.user-outer{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.type-filter {
    position: relative;
}

.type-filter::before, .type-filter::after{
    content: '';
    position: absolute;
    top: 37%;
    height: 3px;
    width: 0;
    background: #154873;
}

.type-filter::before{
    left: 0;
}

.type-filter::after{
    right: 0;
    transition: width 500ms ease;
}

.fd-type-filter::before{
    widtH: 100%;
    transition: width 500ms ease;
}

.fd-type-filter::after{
    width: 100%;
    background: transparent;
    transition: none;
}
