@font-face {
    font-family: 'Roboto-Bold';
    src: url(../../fonts/Roboto-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url(../../fonts/Roboto-Regular.ttf);
    font-display: swap;
}

#dBody *{
    font-family: 'Roboto-Regular';
}

#wcbForm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 400px;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: #ffffff;
}

/* Question */
div#wcbPrompt {
    width: 100%;
    font-family: 'Roboto-Bold';
    font-size: 1.5rem;
}

/* Input text */
.dwcbf .wcbText {
    visibility: hidden;
}

div.dwcbf {
    position: relative;
    margin: 10px 0;
    padding: 15px;
    width: 40%;
    border: 1px solid hsla(0,0%,58.8%,.45);
    border-radius: 32px;
    
}

div.dwcbf label,
div.dwcbf label::after{
    position: relative;
    font-weight: normal;
    color: hsla(0,0%,58.8%,.75);
    z-index: 2;
}

div.dwcbf input[type="text"]::placeholder {
    width: 100%;
    height: 100%;
    font-size: 1rem;
}

div.dwcbf input[type="text"] {
    position: absolute;
    margin-left: 15px;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: none;
    outline-width: 0;
    background: white;
    border-radius: 32px;
    font-size: 1rem;
    
}
div.dwcbf input[type="text"] {
    z-index: 1;
}

div.dwcbf input[type="text"]:focus {
    z-index: 3;
}

/* Input Radio */
#wcbRecallType {
    margin-right: 10px;
}

#dRecallType1,
#dRecallType2 {
    display: block;
    margin-bottom: 5px 0;
}

/* Radio Btn custom */
#wcbRecallType  input[type="radio"] {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 0 0 2px gray;
}

#wcbRecallType input[type="radio"]:before {
    content: '';
    display: block;
    width: 80%;
    height: 80%;
    margin: 10% auto;
    border-radius: 50%;
}

#wcbRecallType input[type='radio']:checked:before {
    background: #F44D57;
}

#wcbRecallType  input[type="radio"]:checked {
    box-shadow: 0 0 0 2px #F44D57;
}

/* Input date */
#wcbLaterRecall {
    display: flex;
    flex-direction: column;
    margin-right: 5px;
    justify-content: space-between;
}

#RecallDate,
#RecallTime {
    border-radius: 5px;
    border: 1px solid hsla(0,0%,58.8%,.75);
    color: rgb(117, 117, 117);
}

/* Input Submit */
#dSubmit {
    flex: 1;
}

.wcbSubmit {
    width: 100%;
    height: 100%;
    background-color: #F44D57;
    border-radius: 32px;
    border: none;
    color: white;
} 