.ginput_container input {
    border-radius: 7px;
}

.ginput_container input:focus,
.gform_button.button:focus {
    box-shadow: unset !important;
}

.mhk-dl-download-link-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    align-items: stretch;
    cursor: pointer;
    position: relative;
}

.mhk-dl-download-link-box * {
    transition: all 0.1s;
}

.mhk-dl-arrow-down {
    width: 15%;
    display: flex;
    border-radius: 8px 0 0 8px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.mhk-dl-download-link-box:hover .mhk-dl-arrow-down {
    background: #D9D9D9;
}

.mhk-dl-text-box {
    width: 85%;
    text-align: center;
    padding: 9px;
    border-radius: 0 8px 8px 0;
}

.mhk-dl-text-box.mhk-dl-is-single {
    width: 100%;
}

.mhk-dl-icon svg {
    margin: 0 0 -3px 5px;
}

.mhk-dl-dl-links {
    position: absolute;
    top: 45px;
    background: #fff;
    border-radius: 8px;
    padding: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    z-index: 999;
}

.mhk-dl-dl-links .mhk-dl-child-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.9em;
    color: var(--e-global-color-483a790);
    padding: 7px 10px;
    border-radius: 8px;

}

.mhk-dl-dl-links .mhk-dl-child-link:hover {
    background: var(--e-global-color-483a790);
    color: #fff;
}

.mhk-dl-download-link-box:hover .mhk-dl-dl-links {
    display: flex;
    height: max-content;
}