body>header>.container {
    position: relative;
    z-index: 5;
    top: 100px !important;
}

.img-box {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 3px;
    transition: all .5s;
    background: #ccc;
}

.img-box:before {
    content: "";
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: transparent !important;
    position: absolute;
    border-radius: 4px;
    transition: all .5s;
    transition-delay: .5s;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
}

.alert.success {
    background-color: #4CAF50;
}

.alert.info {
    background-color: #2196F3;
}

.alert.warning {
    background-color: #ff9800;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

.cnt-box.boxed .caption {
    padding: 18px !important;
    margin-bottom: 0px;
}

.cnt-box.boxed {
    border-radius: 5px;
    transition: all .5s;
    margin-bottom: 15px;
}

i.scroll-top-btn {
    position: fixed;
    bottom: 93px;
    right: 34px;
    width: 35px;
    height: 35px;
    display: none;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
    border-radius: 50%;
    background: #FFF;
    text-align: center;
    cursor: pointer;
    z-index: 999995;
    transition: all .5s;
}


/* Variables
================================== */


/* Tables
================================== */

.Rtable {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 3em 0;
    padding: 0;
}

.Rtable-cell {
    box-sizing: border-box;
    -webkit-box-flex: 1;
    flex-grow: 1;
    width: 100%;
    padding: 0.8em 1.2em;
    overflow: hidden;
    list-style: none;
    border: solid 3px white;
    background: rgba(112, 128, 144, 0.2);
}

.Rtable-cell>h1,
.Rtable-cell>h2,
.Rtable-cell>h3,
.Rtable-cell>h4,
.Rtable-cell>h5,
.Rtable-cell>h6 {
    margin: 0;
}


/* Table column sizing
  ================================== */

.Rtable--2cols>.Rtable-cell {
    width: 50%;
}

.Rtable--3cols>.Rtable-cell {
    width: 33.33%;
}

.Rtable--4cols>.Rtable-cell {
    width: 25%;
}

.Rtable--5cols>.Rtable-cell {
    width: 20%;
}

.Rtable--6cols>.Rtable-cell {
    width: 16.6%;
}


/* Apply styles
  ================================== */

.Rtable {
    position: relative;
    top: 3px;
    left: 3px;
}

.Rtable-cell {
    margin: -3px 0 0 -3px;
    background-color: white;
    border-color: #e2e6e9;
}


/* Cell styles
  ================================== */

.Rtable-cell--dark {
    background-color: slategrey;
    border-color: #5a6673;
    color: white;
}

.Rtable-cell--dark>h1,
.Rtable-cell--dark>h2,
.Rtable-cell--dark>h3,
.Rtable-cell--dark>h4,
.Rtable-cell--dark>h5,
.Rtable-cell--dark>h6 {
    color: white;
}

.Rtable-cell--medium {
    background-color: #b8c0c8;
    border-color: #a9b3bc;
}

.Rtable-cell--light {
    background-color: white;
    border-color: #e2e6e9;
}

.Rtable-cell--highlight {
    background-color: lightgreen;
    border-color: #64e764;
}

.Rtable-cell--alert {
    background-color: darkorange;
    border-color: #cc7000;
    color: white;
}

.Rtable-cell--alert>h1,
.Rtable-cell--alert>h2,
.Rtable-cell--alert>h3,
.Rtable-cell--alert>h4,
.Rtable-cell--alert>h5,
.Rtable-cell--alert>h6 {
    color: white;
}

.Rtable-cell--head {
    background-color: slategrey;
    border-color: #5a6673;
    color: white;
}

.Rtable-cell--head>h1,
.Rtable-cell--head>h2,
.Rtable-cell--head>h3,
.Rtable-cell--head>h4,
.Rtable-cell--head>h5,
.Rtable-cell--head>h6 {
    color: white;
}

.Rtable-cell--foot {
    background-color: #b8c0c8;
    border-color: #a9b3bc;
}


/* Responsive
  ==================================== */

@media all and (max-width: 500px) {
    .Rtable--collapse {
        display: block;
    }
    .Rtable--collapse>.Rtable-cell {
        width: 100% !important;
    }
    .Rtable--collapse>.Rtable-cell--foot {
        margin-bottom: 1em;
    }
}

.no-flexbox .Rtable {
    display: block;
}

.no-flexbox .Rtable>.Rtable-cell {
    width: 100%;
}

.no-flexbox .Rtable>.Rtable-cell--foot {
    margin-bottom: 1em;
}