.markino-btn-small {
    font-size: 14px;
    padding: 10px 20px;
}

.markino-btn-medium {
    font-size: 16px;
    padding: 15px 30px;
}

.markino-btn-large {
    font-size: 18px;
    padding: 20px 40px;
}

.markino-btn-extra-large {
    font-size: 20px;
    padding: 25px 50px;
}

.markino-btn-round {
    border-radius: 30px !important;
    overflow: hidden;
}

.markino-btn-semi-round {
    border-radius: 5px !important;
    overflow: hidden;
}

.markino-btn-circle {
    border-radius: 50% !important;
    overflow: hidden;
}

.markino-btn-outline {
    outline: 2px solid var(--markino-black) !important;
}


/*========================
nav-line
=============================*/

.markino-menu-button .markino-nav-line {
    display: inline-block;
    z-index: 9999;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.markino-menu-button .markino-nav-line .nav-line {
    width: 1px;
    height: 30px;
    background: var(--color-theme-primary);
    display: block;
    position: absolute;
    top: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.markino-menu-button .markino-nav-line:hover .nav-line.line-1 {
    height: 0;
}

.markino-menu-button .markino-nav-line:hover .nav-line.line-2 {
    height: 50px;
}

.markino-menu-button .markino-nav-line .nav-line.line-2 {
    left: 10px;
}

.markino-menu-button .markino-nav-line .nav-text {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: var(--font-letter-spacing-body);
    color: var(--color-theme-primary);
    -moz-transform: rotate(-90deg) translateX(-40px) translateY(-10px);
    -webkit-transform: rotate(-90deg) translateX(-40px) translateY(-10px);
    -o-transform: rotate(-90deg) translateX(-40px) translateY(-10px);
    -ms-transform: rotate(-90deg) translateX(-40px) translateY(-10px);
    transform: rotate(-90deg) translateX(-40px) translateY(-10px);
    -webkit-transition: all 3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.markino-menu-button .markino-nav-line:hover .nav-text {
    opacity: 1;
    visibility: visible;
    -moz-transform: rotate(-90deg) translateX(-65px) translateY(-10px);
    -webkit-transform: rotate(-90deg) translateX(-65px) translateY(-10px);
    -o-transform: rotate(-90deg) translateX(-65px) translateY(-10px);
    -ms-transform: rotate(-90deg) translateX(-65px) translateY(-10px);
    transform: rotate(-90deg) translateX(-65px) translateY(-10px);
}


/*============
circle-menu
================*/

.markino-circle-menu-container {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: var(--color-theme-white);
    margin: auto;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.markino-circle-menu-container .markino-circle-menu {
    position: relative;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.markino-circle-menu-container .markino-circle-menu .circle {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid var(--color-theme-primary);
    display: inline-block;
    margin: 0 2px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.markino-circle-menu-container:hover .markino-circle-menu .circle {
    -webkit-animation: square-effect-2 1s ease-in-out infinite alternate;
    animation: square-effect-2 1s ease-in-out infinite alternate;
}


.markino-circle-menu-container .markino-circle-menu .circle.circle-2 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.markino-circle-menu-container .markino-circle-menu .circle.circle-4 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.markino-circle-menu-container .markino-circle-menu .circle.circle-3 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@keyframes square-effect-2 {
    0% {
        background: var(--color-theme-primary);
    }

    50% {
        background: transparent;
    }
}


@keyframes square-effect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        background: var(--color-theme-white);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes square-effect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        background: var(--color-theme-white);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}