/*Body*/
.body {
    margin-top: 50px;
}

/*Tool*/
.tool-menu-c {
    border-bottom: 1px solid #ECECEC;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-menu {
    width: 100%;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-menu__header {
    width: 100%;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tool-menu__buttons {
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: space-around;
}

.tool-menu__a {
    color: #959CA3;
    padding: 15px;
}

.tool-menu__a:first-child {
    font-weight: 500;
}

.tool-menu__a:hover {
    font-weight: 500;
}

.tool-menu__header .tool-menu__a:first-child {
    padding: 0;
}

.tool-menu__buttons .tool-menu__a:first-child {
    display: none;
}

/*Tool response*/
.tool-response {
    margin-top: 20px;
}

/*Tool FAQ*/
.tool-faq {
    margin-top: 20px;
}

/*Tablet*/
@media only screen and (min-width: 768px) {
    .tool-menu__header {
        display: none;
    }

    .tool-menu__buttons {
        display: flex;
        flex-direction: row;
    }

    .tool-menu__buttons .tool-menu__a:first-child {
        display: block;
    }
}