/*Start Global Role */
:root {

}
/* ::selection {
    background-color: var(--selection-bg);
    color: white;
} */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    caret-color: var(--red-color);
}
html {
    scroll-behavior: smooth;
}
body {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}
ul {
    list-style: none;
    padding: 0;
}
a {
    text-decoration: none;
}
select {
    width: 100%;
}
hr {
    width: 100%;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/*End Global Role */
body {
    background-color: #f6f6ff;
}
.container {
    box-shadow: 1px 1px 4px -1px #030;
    padding: 15px 15px;
}
.star {
    color: red;
}
main {
    padding-top: 60px;
    padding-bottom: 60px;
}
main .main-title {
    text-align: center;
    margin-bottom: 15px;
}
main select,
main input ,
.select2-container--default .select2-selection--single {
    padding: 5px 15px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #307477;
}
main input[type="file"]{
    border: 1px solid;
    padding: 4px 15px;
}
main select:focus,
main input:focus {
    outline: none;
    border: 1px solid #2cbf97
}
fieldset {
    padding: 20px;
    border: 1px solid #0c8156;
    margin-top: 35px;
}
fieldset .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
fieldset legend {
    padding: 0px 10px;
    font-weight: bold;
}
fieldset .info {
    width: 49%;
}
@media screen and (max-width: 767px) {
    fieldset .info {
        width: 100%;
    }
}
fieldset .info-parent input {
    width: auto;
}
fieldset .info-child {
    display: flex;
    align-items: center;
    justify-content: center;
}
fieldset .info .child-gender {
    width: auto;
    margin: 15px;
}
.buttons {
    text-align: left
}
.save {
    margin-top: 25px;
    padding: 6px 50px;
    font-size: 25px;
    background: #0c8156;
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
/* button:hover {
    background: white;
    border: 1px solid #0C8156;
    color: #0c8156;
} */
.add-row {
    border: none;
    padding: 10px 20px;
    margin-top: 5px;
    background-color: #567b95;
    color: white;
}
.alert {
    text-align: center;
    margin-top: 20px;
    background-color: #00887b96;
    padding: 15px;
    color: white;
}