.domain-form-one {
    max-width: 650px;
}

.domain-submit-box {
    top: 6px;
    right: 6px;
}

.domain-list-item {
    cursor: pointer;
    border: 1px solid #00000047;
    transition: .5s;
    &:hover {
        background-color: $white;
        border-color: $white;
        box-shadow: $box-shadow-sm;
    }
}

// Home 6
.domain-3-area {
    background-image: url(../img/domain-6-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.domain-list-table {
    thead {
        th {
            background-color: $secondary;
            padding: 15px 20px;
        }
    }
    tbody {
        tr {
            &:nth-child(even) {
                th {
                    background-color: $secondary;
                }
            }
            th {
                padding: 15px 20px;
            }
        }
    }
}