input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 3px;
    background-image: url(https://www.svgrepo.com/show/524617/hamburger-menu.svg);
    background-size: 103%;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-image: url(https://www.svgrepo.com/show/365893/x-thin.svg);
    transition: all 0.1s;
}

input[type="checkbox"] ~ .mobileNav {
    transition: all 0.2s linear;
    transform: translateX(700px);
}
input[type="checkbox"]:checked ~ .mobileNav {
    transform: translateX(0);
    transition: all 0.2s linear;
}

.mobileNav {
    overflow: scroll;
    height: 711px;
    width: 280px;
    right: 0;
    top: 70px;
    position: fixed;
    background-color: #0b8037;
}

.navBlock {
    font-size: 24px;
    padding: 15px 25px;
    font-size: 20px;
    color: white;
    display: block;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    text-decoration: none;
}

/* goUp */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: linear-gradient(135deg, rgb(32 175 54), rgb(0 95 39));
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;

    display: block;
    width: 60px;
    height: 60px;
    text-indent: -9999px;
    position: fixed;
    z-index: 999;
    right: 1em;
    bottom: 3.7em;
    background: url("https://aoxoa.co/wp-content/themes/albedo/images/up-arrow.png") center 43% no-repeat rgba(39, 174, 97, 0.7);
    border-radius: 30px;
    transition: 0.2s ease-in-out;
    outline: 0px;
}
.showBtn {
  display: block;
}
