.gacs-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.gacs-title {
    padding: 10px 20px;
    width: 100%;
    display: block;
}

.gacs-readmore {
    padding: 20px;
}

.gacs-block {
    padding: 20px;
    width: 100%;
    display: block;
}

.gacs-item {
    width: 80%;
    display: inline-block;
}

.gacs-block:nth-child(2n) {
    background-color: #e6e6e6;
}

/* Modal Content/Box */

.gacs-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */

.gacs-title {
    margin: 0 0 -0.25em;
    padding-left: 0;
}

.gacs-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.gacs-close:hover,
.gacs-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* The switch - the box around the slider */

.gacs-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-top: 30px;
    float: right;
}

/* Hide default HTML checkbox */

.gacs-switch input {
    display: none;
}

/* The slider */

.gacs-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.gacs-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.gacs-slider {
    background-color: #2196F3;
}

input:focus+.gacs-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.gacs-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.gacs-slider.round {
    border-radius: 34px;
}

.gacs-slider.round:before {
    border-radius: 50%;
}
