/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        position: fixed;
        display: none;
        text-decoration: none;
        bottom: 20px;
        right: 20px;
        overflow: hidden;
        width: clamp(2.5rem, 2.2922rem + 0.694vw, 3.125rem);/* 40 - 50 */
        height: clamp(2.5rem, 2.2922rem + 0.694vw, 3.125rem);/* 40 - 50 */
        border: none;
        text-indent: 100%;
        z-index: 9;
        text-indent: -9999px;
        -webkit-border-radius: var(--wdtRadius_3X);
          border-radius: var(--wdtRadius_3X);
        -webkit-box-shadow: 0px 0px 10px 1px rgba(var(--wdtAccentTxtColorRgb), 0.2);
        box-shadow: 0px 0px 10px 1px rgba(var(--wdtAccentTxtColorRgb), 0.2);
    }

    .back-to-top-icon {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        color: var(--wdtAccentTxtColor);
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -o-transition: all .3s linear;
        -ms-transition: all .3s linear;
        transition: all .3s linear;
        text-indent: 0;
        text-align: center;
        font-size: clamp(1.625rem, 1.4172rem + 0.694vw, 2.25rem); /* 26 - 36 */
        line-height: 1;
    }

.wdt-door-color {
  fill: inherit;
  transform-origin: left center;
  transform-box: fill-box;
  will-change: transform;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
  transform: perspective(500px) rotateY(0deg);
}

#back-to-top:hover .back-to-top-icon .wdt-door-color {
  transform: perspective(500px) rotateY(-68deg);
}


 
    /* #back-to-top:hover .back-to-top-icon {
        margin-top: -4px;
    } */

    /* #back-to-top:after {
        background-color: var(--wdtAccentTxtColor);
        content: "";
        display: block;
        height: 15px;
        margin: 0 auto;
        opacity: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        text-align: center;
        text-indent: 0;
        width: 2px;
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
    }

    #back-to-top:hover:after {
        margin-top: 2px;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    } */

    #back-to-top:active,
    #back-to-top:focus {
        outline: none;
    }


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/


    /* Primary */
    #back-to-top {    background-image: var(--wdt-linear-gradient-bg);
    background-repeat: no-repeat;
    background-size: 100% 220%;
    background-position: bottom;}

    /* Secondary */
    #back-to-top:hover {   background-color: var(--wdtSecondaryColor);
    color: var(--wdtAccentTxtColor);
    -webkit-box-shadow: none;
    box-shadow: none;
    background-size: 100% 220%;
    background-position: top; }


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    @media only screen and (max-width: 1280px) {

        .nav-is-visible #back-to-top {
            opacity: 0;
        }
    }