.asr-webapp-toggle-slider {
    visibility: hidden;
    /*float:right;*/
    height: auto;
    width: 100%;
    margin: 0 0 2% 4%
}

.asr-webapp-toggle-slider::after {
    content: "";
    clear: both;
}

.asr-webapp-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 24px;
    display: -webkit-inline-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    /*  height: 34px;*/
}

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

.asr-webapp-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: #b2b2b2;
    -webkit-transition: .4s;
    transition: .4s;
}

.asr-webapp-slider-label {
    position: absolute;
    top: 0;
    left: 75px;
    right: 0;
    bottom: 0;
    height: 100%;
    line-height: 24px;
    min-width: 300px;
    margin-top: 0;
    color: #5eaded;
    -webkit-transition: .6s;
    transition: .6s;
}

.asr-webapp-slider::before {
    position: absolute;
    content: "OFF";
    height: 20px;
    width: 33px;
    left: 2px;
    bottom: 2px;
    font-size: .89rem;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    color: #b2b2b2;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.asr-webapp-slider {
    background-color: #5eaded;
}

input:focus+.asr-webapp-slider {
    box-shadow: 0 0 1px #5eaded;
}

input:checked+.asr-webapp-slider::before {
    -webkit-transform: translateX(33px);
    -ms-transform: translateX(33px);
    transform: translateX(33px);
    color: #5eaded;
    content: "ON";
}

/* ROUNDED SLIDERS*/
.asr-webapp-slider.round {
    border-radius: 34px;
}

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

/**
[ADMINISTRATIVE SLIDERS]
*/
.asr-webAdmin-toggle-slider {
    /*visibility:hidden; 
float:right;*/
    height: 24px;
    width: 100%;
}

.asr-webAdmin-toggle-slider::after {
    content: "";
    clear: both;
}

.asr-webAdmin-switch {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-inline-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: inline-block;
    cursor: pointer;
    background: rgba(255, 0, 0, .315);
}

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

.asr-webAdmin-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border: 1px solid #fff;
    background-color: inherit;
    -webkit-transition: .4s;
    transition: .4s;
}

.asr-webAdmin-slider-label {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    height: 100%;
    line-height: 20px;
    margin-top: 0;
    color: #5eaded;
    -webkit-transition: .6s;
    transition: .6s;
}

.asr-webAdmin-slider::before {
    position: absolute;
    content: "✖";
    height: 20px;
    width: 50%;
    left: 1px;
    bottom: 1px;
    font-size: 1.125rem;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
    color: rgba(255, 0, 0, .85);
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.asr-webAdmin-slider {
    background-color: rgba(0, 255, 0, .45);
}

input:focus+.asr-webAdmin-slider {
    box-shadow: 0 0 1px #5eaded;
}

input:checked+.asr-webAdmin-slider::before {
    -webkit-transform: translateX(calc(100% - 2px));
    -ms-transform: translateX(calc(100% - 2px));
    transform: translateX(calc(100% - 2px));
    color: #008000;
    content: "✔";
}

/* ROUNDED SLIDERS*/
.asr-webAdmin-slider.round {
    border-radius: 34px;
}

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



div.overlaying {
    width: 100px;
    height: 100px;
    background: red;
    transition: width 2s;
    -webkit-transition: width 2s;
    /* Safari 3.1 to 6.0 */
}

div.overlaying:hover {
    width: 300px;
}

/* FUNCTION VARIABLES */
:root {
    --main-bg-color: coral;
    --bd-tl-svn-fv: 1px solid rgba(0, 128, 128, .75);
    --border-teal-fifty: 1px solid rgba(0, 128, 128, .5);
    --bd-tl-tty-fv: 1px solid rgba(0, 128, 128, .25);
    --border-teal-thinned: 1px solid rgba(0, 128, 128, .125);
    --border-teal: 1px solid rgba(0, 128, 128, 1);
    --border-teal-dotted: 1px dotted teal;
    --shadow-teal-five: -moz-box-shadow:0px 0px 5px teal;
    --shadow-teal-five: -webkit-box-shadow:0px 0px 5px teal;
    --shadow-teal-five: box-shadow:0px 0px 5px teal;

    /*RADIUS*/
    --radius-left-two: 2px 0 0 2px;
    --radius-left-three: 3px 0 0 3px;
    --radius-left-five: 5px 0 0 5px;

    --radius-right-two: 0 2px 2px 0;
    --radius-right-three: 0 3px 3px 0;
    --radius-right-five: 0 5px 5px 0;

    --radius-two: 2px;
    --radius-three: 3px;
    --radius-five: 5px;

    /*BORDERS*/
    --border-default: border: 1px solid rgba(142, 14, 20, .475);
    --no-border: border: none;
    --no-border-lt: border-left: none;
    --no-border-rt: border-right: none;
    --no-border-top: border-top: none;
    --no-border-btm: border-bottom: none;
}

#div1 {
    background-color: var(--main-bg-color);
    padding: 5px;
}

/* ATTR*/
a.repeat-block:after {
    content: "[" attr(href) "]";
}

a.repeat-bracket:after {
    content: "(" attr(href) ")";
}

/* CALC */
#div1 {
    width: calc(100% - 100px);
}