.medicines {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media screen and (max-width: 500px) {
	.medicines {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
}

.medicine {
    border-radius: 16px;
    background: #FAFBFD;
}

.medicine__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.medicine__header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 42px;
    border-radius: 16px 16px 0px 0px;
}

.medicine__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    margin: 0;
}

.medicine_date {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    margin-top: 5px;
}

.medicine__body,
.medicine__footer {
    margin: 0 42px;
}

.medicine__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.medicine__item__date {
    gap: 0.1rem;
}

.medicine__item__title {
    color: #5E5E5E;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    margin: 0;
}

.medicine__item__subtitle {
    color: #5E5E5E;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    word-break: break-word;
}

.medicine__item__subtitle__validation {
    font-weight: 600;
}

.medicine__item .wk-icon {
    background: #5E5E5E;
    height: 15px;
    width: 15px;
}

.gap-4px {
    gap: 4px;
}

.medicine__divider-top,
.medicine__divider-bottom {
    border-color: #E8E1E1;
    margin-left: 37px;
    margin-right: 37px;
}

.medicine__divider-top {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.medicine--authorized .medicine__header {
   color: #fff;
}

.medicine__footer {
    margin-bottom: 1rem;
}

.medicine-visibility-hidden {
    visibility: hidden;
}

.medicine__header .icon-verificado {
    min-width: 22px;
    min-height: 22px
}

.medicine__header__actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
}

.medicine-bg-danger {
    background-color: #d75553;
}

#tempoMedicamentoLabelLabel {
    margin-bottom: 0 !important;
}

#dtInicioMedicamentoLabel {
    padding-right: 15px !important;
}

.med-icon-mais {
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 13px;
    position: absolute;
    top: -3px;
    left: 70px;
    font-size: 20px !important;
}

.med-mt {
    margin-top: 14px
}