* {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

#main {
    padding-bottom: 1rem;
}

.tab-content {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}



/* Custom Portal Input */
.ppInput {
    width: 100%;
    margin: 0;
    border: solid 1px #BBB;
}



/* | Switch big | */
/* ============== */
.switch {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

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

.label {
    padding-left: 60px;
    width: 100%;
    width: 30%;
}

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

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

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

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

/* Rounded sliders */
.slider.round {
    border-radius: 34px !important;
}

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

/* Switch small*/
.switch-small {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    height: 28px;
}

    .switch-small input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider-small {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 24px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.label-small {
    padding-left: 45px;
    padding-right: 0px;
    width: 100%;
    width: 40%;
}

.slider-small:after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

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

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

input:checked + .slider-small:after {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider-small.round-small {
    border-radius: 24px !important;
}

    .slider-small.round-small:after {
        border-radius: 50%;
    }

.grid-view {
padding:4rem;
}

#changeAlert {
    transition: opacity 0.3s ease;
}