﻿.relative {
    position: relative;
}
.block {
    display: block;
}
.vh-100 {
    height: 100vh;
}
.vw-100 {
    width: 100vw;
}

/* scroll */

.h-scroll-y {
    overflow-y: scroll;
    padding-right: 1rem;
}

/* Text */
.cursor-pointer {
    cursor: pointer;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.on-hover-color-trigger:hover .on-hover-half-color,
.on-hover-color-trigger:hover .on-hover-color {
    filter: grayscale(0);
    -webkit-transition: -webkit-filter 500ms linear;
}
.on-hover-color {
    filter: grayscale(1);
}
.on-hover-half-color {
    filter: grayscale(0.5);
}

.filling-line {
    width: 0;
    height: 3px;
    background: var(--color-main-600);
    margin-top: 1rem;
    transition: width 3s linear;
}
    .filling-line.filling-line-active {
        width: 100%;
    }

.filling-line-no-transition {
    transition: none;
}

/* width */
.full-width {
    width: 100%;
}
@media (max-width: 480px) {
    .hide-on-mobile {
        display: none!important;
    }
}
@media (max-width: 1024px) {
    .hide-on-tablet {
        display: none !important;
    }
}