﻿.blocks {
    width: 90%;
    padding: 3%;
    margin-left: 5%;
    background: linear-gradient(160deg, rgba(50,59,137,1) 0%, rgba(85,85,162,1) 50%, rgba(87,158,126,1) 100%);
    position: relative;
    height: fit-content;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    z-index: 2;
}

    .blocks::after {
        content: '';
        display: block;
        position: absolute;
        background-image: url(../images/back_pbs_building.svg);
        background-position: bottom right;
        background-repeat: no-repeat;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        opacity: 0.25;
        z-index: 1;
    }

    .blocks:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }
 

.panel-background {
    position: absolute;
    top: 0;
    opacity:0.1;
}

.b2 {
    background: linear-gradient(160deg, rgba(87,158,124,1) 0%, rgba(93,176,120,1) 64%, rgba(50,59,137,1) 100%);
}

.blocks h2, .blocks h3, .blocks h4, .blocks h5 {
    text-align: center;
    font-weight: bolder;
}

.blocks h3 {
    color: #1d2951;
}

.blocks h5 {
    color: #FFCC99 !important;
}

.blocks h3, .blocks h4 {
    color: orange !important;
}

.blocks h2 {
    color: whitesmoke;
}

.myButton {
    box-shadow: inset 0px 10px 14px -7px #f5978e !important;
    background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%) !important;
    background-color: #f24537;
    border-radius: 17px !important;
    border: 2px solid #d02718 !important;
    cursor: pointer !important;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none !important;
    text-shadow: 0px 1px 0px #810e05;
    width: 170px;
    height: 50px;
    margin: 5px;
    z-index: 99;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .myButton:hover {
        background: linear-gradient(to bottom, #c62d1f 5%, #f24537 100%) !important;
        background-color: #c62d1f !important;
        box-shadow: inset 0px 10px 14px -7px #ff8080 !important;
        color:white;
    }

    .myButton:active {
        top: 1px !important;
        text-decoration: none !important;
        color: white;
    }


.panel-button-con {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: flex-end; 
}

.blocks th {
    color: #FDE000;
    font-size: 15px;
    font-weight: bold;
}

.blocks td {
    color:white;
    vertical-align:middle;
}

.table-bordered td, table-bordered th {
    padding: 8px 3px;
}

.responsive-table {
    position: relative;
    z-index: 99;
}

@media only screen and (max-width: 768px) {
    .responsive-table {
        overflow-x: scroll;
    }

        .responsive-table table {
            min-width: 600px;
        }
}