/* Default styles for larger screens (desktops and large laptops) */
.socialIcon {
    position: fixed;
    top: 60%;
    left: 97%;
    right: 0;
    width: 50px;
    z-index: 9999;
    transform: translateY(-50%);
    padding-right: 7px;
}

#toggleArrow {
    position: fixed;
    top: calc(60% + 85px);
    left: 99%;
    transform: translateX(-50%);
    font-size: 15px;
    text-align: center;
    cursor: pointer !important;
    background-color: #8dc945;
    z-index: 80;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 24px;
    width: 22px;
    color: white;
}

/* Media query for large desktops */
@media only screen and (min-width: 1200px) {
    .socialIcon {
        left: 97%;
    }

    #toggleArrow {
        left: 99%;
    }
}

/* Media query for laptops and smaller desktops */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .socialIcon {
        left: 95%;
    }

    #toggleArrow {
        left: 97%;
    }
}

/* Media query for tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .socialIcon {
        left: 92%;
    }

    #toggleArrow {
        left: 92%;
    	margin-right:10px;
    }
}

/* Media query for mobile devices */
@media only screen and (min-width: 450px) and (max-width: 767px) {
    .socialIcon {
        left: 96%;
        width: 40px;
    }

    #toggleArrow {
        left: 90%;
        font-size: 12px;
        height: 20px;
        width: 18px;
    }
}

/* Media query for mobile devices */
@media only screen and (max-width: 450px) {
    .socialIcon {
        left: 92%;
        width: 40px;
    }

    #toggleArrow {
        left: 92%;
        font-size: 12px;
        height: 20px;
        width: 16px;
    	margin-right:20px;
    }
}