/* Footer and floating action styles */

.footer {
    width: 100%;
}

.footer-top {
    background-color: #272727;
    color: #a2a6a9;
    padding: 60px 0;
}

.footer-bottom {
    background-color: #272727;
    color: #a2a6a9;
    padding: 10px 0;
    text-align: center;
}

.footer-col-wrap {
    align-items: center;
    padding: 0 15px;
}

.footer-col-logo img {
    height: 60px;
}

.footer-sns-item {
    width: 42px;
    height: 42px;
    line-height: 40px;
    transition: all .5s;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #a2a6a9;
}

.footer-sns-item a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #a2a6a9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-sns-item:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.footer-sns-item:hover a {
    color: #fff;
}

.footer-col-menu {
    width: 100%;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.footer-menu-item {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-menu-item:hover a {
    color: #fff;
}

.footer-menu-item p {
    flex: 1;
}

.action {
    position: fixed;
    right: 50px;
    z-index: 998;
}

.action-item {
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 20px;
    cursor: pointer;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    position: relative;
}

.action-item:focus {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

.action-item:hover {
    background-color: #009ee7;
    color: #fff;
    text-decoration: none;
}

.action-item:hover .action-item-text {
    width: 180px;
    visibility: visible;
    opacity: 1;
    transform: translateX(-5px);
    transition: all .3s ease;
}

.action-item-text {
    position: absolute;
    top: 0;
    right: 50px;
    opacity: 0;
    width: 180px;
    visibility: hidden;
    height: 50px;
    line-height: 50px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding-left: 10px;
    box-sizing: border-box;
    transition: all .3s ease;
}

@media (max-width: 768px) {
    .action-item {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .action {
        right: 10px;
        bottom: 10% !important;
    }
}
