.textfromwebsite-container *,
.textfromwebsite-container {
    all: unset;
    display: revert;
    direction: ltr;
}

.textfromwebsite-container {
    font-family: sans-serif;
    padding: 20px;
    background: white;
    display: flex;
    border-top: 1px solid black;
    bottom: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 9999999 !important;
    align-items: center;
    font-size: 16px;
    box-sizing: border-box;
    font-weight: normal;
}

.textfromwebsite-logo {
    border: 1px solid black;
    width: 49px;
    height: 25px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.textfromwebsite-logo:after,
.textfromwebsite-logo:before {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    transition: left .3s;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
}

.textfromwebsite-logo:before {
    background: white;
    color: black;
    content: "T";
    left: 0;
}

.textfromwebsite-logo:after {
    background: black;
    color: white;
    content: "W";
    left: 50%;
}

.textfromwebsite-container .no {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    padding: 0;
    text-indent: -99999px;
    position: relative;
    display: block;
    margin-right: 15px;
    transition: .5s;
    border-radius: 5px;
}

.textfromwebsite-container .not-active {
    opacity: 0.5;
    opacity: .3;
    filter: saturate(0);
}

.textfromwebsite-container .not-active:hover {
    opacity: 1;
    filter: saturate(1);
}

.textfromwebsite-container .no.js {
    background-image: url(../img/js.svg);
}

.textfromwebsite-container .no.css {
    background-image: url(../img/css.svg);
}

.textfromwebsite-container .no:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 2px;
    border-radius: 3px;
    background: tomato;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.textfromwebsite-container a {
    display: flex;
    position: relative;
    cursor: pointer;
}