/* ************** Custom Properties ************** */
:root {
    --color1: rgb(214, 211, 174);
    --color2: rgb(80, 99, 13);
    --color3: rgb(214, 174, 47);
    --color4: rgb(11, 69, 10);
    --color5: rgb(7, 26, 3);
}


/* ************** Reset Styles ************** */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;

}

main {
    position: relative;
    z-index: 100 !important;
    padding-top: 150px;
    padding-bottom: 170px;
    flex: 1;
}

footer {
    position: relative;
    z-index: 200;
}

/* ************** BootStrap Styles ************** */
.bg-body-tertiary {
    background-color: var(--color4) !important;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar {
    z-index: 999;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 1);
    box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    -webkit-box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    -moz-box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);

}

.navbar-toggler {
    box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    -webkit-box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    -moz-box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    transition: all 1s ease-out;

}

.navbar-toggler-icon {
    transition: all 1s ease-out;
}

.navbar:hover {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28214, 174, 47, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: var(--color3) !important;

    transition: all 1s ease-out;
}

.accordion {

    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(11, 69, 10, 0.25);
    --bs-accordion-active-color: var(--color2);
    --bs-accordion-border-color: var(--color4);
    --bs-accordion-border-width: 2px;
    --bs-accordion-btn-color: var(--color4);
    --bs-accordion-active-bg: var(--color4);
    --bs-accordion-active-color: rgb(255, 255, 255);
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230b450a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");

}


.carousel {

    max-width: 80%;
    margin: 0 auto;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    border-radius: 20px;
}

/* Control de botones */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230b450a' stroke-width='1.5'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230b450a' stroke-width='1.5'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Media queries para que los indicadores no se suban mucho */
.carousel-indicators [data-bs-target] {
    background-color: var(--color4);
    /* depende deste margin de la imagen */

}


.nav-link:hover {
    color: var(--color3) !important;
    transition: .3s all ease-in-out;
}

.nav-link {
    position: relative;
    display: inline;
    color: rgb(255, 255, 255);
}


.nav-link::after {
    content: "";
    position: absolute;
    background-color: var(--color3);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -2px;
    transition: .5s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-outline-success {
    width: 80px;
    color: var(--color3);
    border-color: var(--color3);

}

.btn-outline-success:hover {
    background-color: var(--color3);
    color: rgb(255, 255, 255);
    border-color: var(--color3);
}

.position-sticky {
    height: 100vh;
}

.form-control:focus {
    border-color: rgb(222, 226, 230);
    box-shadow: 0 0 0 0.25rem rgba(155, 155, 155, 0.25);

}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23d9db30'/%3e%3c/svg%3e");
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(217, 219, 48);
    box-shadow: 0 0 0 0.25rem rgba(217, 219, 48, 0.25) !important;
    animation: messageError 1.5s ease;
}

.remove-check-input {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");

    box-shadow: none !important;
}

.form-check {
    outline: 2px solid transparent;

}

.form-check-input {
    outline: 2px solid transparent;

}

.form-check:hover {
    outline: 2px solid rgb(217, 219, 48) !important;
    transition: .5s all ease;
}

.form-check:hover .form-check-input {
    outline: 2px solid rgb(217, 219, 48) !important;

}

.input-group:active {
    border-color: rgb(217, 219, 48);
}

.form-calculate-style {
    box-shadow: none !important;
}

.input-group.active {
    border: 2px solid rgb(217, 219, 48);
    border-radius: 8px !important;
    overflow: hidden;

}

.input-group.active input,
.input-group.active .input-group-text {
    border-color: transparent;
}

.form-check:hover {
    cursor: pointer;
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}

.form-check.active {
    border: 2px solid rgb(217, 219, 48) !important;
    background-color: rgb(250, 250, 224);
    border-radius: 5px;
    animation: messageError 1s ease;
}

/* ************** My Styles ************** */

@keyframes hammer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hammer-rotate-slow {
    animation: hammer 1s infinite ease-in-out;
}

.hammer-rotate-medium {
    animation: hammer .5s infinite ease-in-out;
}

.hammer-rotate-fast {
    animation: hammer .2s infinite ease-in-out;
}

.focus-style {
    background-color: var(--color3);
    color: rgb(255, 255, 255);
    border-color: var(--color3);
}

.normal-style {
    background-color: rgb(255, 255, 255) !important;
    color: var(--color3) !important;
    border-color: var(--color3) !important;
}

.btn-disabled {
    color: rgb(155, 155, 155) !important;
    border-color: rgb(155, 155, 155) !important;
    transition: 2s all ease !important;
}

.shadow-footer {
    height: 135px;
    box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    -webkit-box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
    -moz-box-shadow: 6px 5px 47px 3px rgba(0, 0, 0, 0.76);
}

.btnSmall {
    width: 60px;
}


.standard-img {
    width: 1020px !important;
    height: 574px !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.75) !important;
}


.textareaheight {
    resize: none;
    height: 100px;
    overflow: hidden;
}

.contact-form-invalid {
    display: block;
    border: 2px solid rgb(220, 53, 69) !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.contact-form-valid {
    display: block;
    border: 2px solid rgb(13, 192, 67) !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 192, 67, 0.25) !important;
}

.text-form-invalid {
    color: rgb(220, 53, 69);
    text-align: center;
    animation: messageError 1s 1 normal 0s ease-out both;
}

.margin-bottom {
    margin-bottom: 200px;
}

.bg-results {
    background-color: rgb(19, 48, 64);
    border-radius: 0 20px 20px 14%;
}

.bg-results h3 {
    color: rgb(228, 239, 244);
}

.bg-results p {
    color: rgb(120, 153, 172);
}

.border-data {
    border-radius: 20px 0 0 20px;
    box-shadow: -9px 9px 36px -27px rgba(0, 0, 0, 0.74);
    -webkit-box-shadow: -9px 9px 36px -27px rgba(0, 0, 0, 0.74);
    -moz-box-shadow: -9px 9px 36px -27px rgba(0, 0, 0, 0.74);
}

.input-bg {
    background-color: rgb(227, 244, 252);
    color: rgb(86, 113, 126);
}


.border-bg:hover {
    cursor: pointer;
}

.border {
    border-radius: 5px;
}

.btn-primary-style {
    background-color: rgb(217, 219, 48);
    color: rgb(17, 47, 60);
    border-color: rgb(217, 219, 48);
}

.btn-width-mobile {
    width: 80px;
    height: 45px;
    font-size: 13px;
}

.w-75 {
    width: 100% !important;
}

.btn-primary-style:hover {
    opacity: 90%;
    color: rgb(17, 47, 60);
    background-color: rgb(217, 219, 48);
    border-color: rgb(217, 219, 48);
}

.btn-primary-style:focus {
    color: rgb(17, 47, 60);
    background-color: rgb(217, 219, 48);
    border-color: rgb(217, 219, 48);
}

.hammer-width {
    width: 170px;
}

.padding-medium-results {
    padding: 20px !important;
    border-radius: 0px 0px 20px 20px;
}

.padding-medium-data {
    padding: 20px !important;
    border-radius: 20px 20px 0 0;
}

.error-form {
    color: rgb(214, 51, 43);
    animation: messageError 1s ease;
}

.style-error-form {
    display: flex;
}

.div-style {
    margin-top: 10px;
    width: 100%;
}

.calculate-form-border {
    border: 2px solid rgb(214, 51, 43);
    border-radius: 8px !important;
    animation: messageError 1s ease;
}

.calculate-form-border input,
.calculate-form-border .input-group-text {
    border-color: transparent;
}

.error-form br {
    display: none;
}

.span-style-lg {
    margin-left: 3px;
}

.hide-info-results {
    display: none !important;
}

.align-items-start {
    align-items: start !important;
}


.padding-medium-results {

    height: 450px;
}

.margin-results {
    margin-top: 10%;
}

.your-results-animation {
    animation: messageError 1s ease;
}

.border-top-repay {
    width: 450px !important;
    border-radius: 10px;
    background-color: rgb(14, 36, 49);
    border-top: 4px solid rgb(205, 215, 81);
}

.border-top {
    border-top-color: rgb(215, 217, 48) !important;
    border-top-width: 4px !important;
    background-color: rgb(14, 36, 49);
    border-radius: 10px;
}

.parr-month-repay-style {
    color: rgb(217, 219, 48) !important;
    font-size: 40px !important;
}

.parr-total-style {
    color: rgb(255, 255, 255) !important;
}

.hide-parr {
    display: none !important;
}

@keyframes messageError {
    0% {
        visibility: hidden;
        opacity: 0;
    }

    100% {
        visibility: visible;
        opacity: 1;
    }
}

/*************************** Age calculator style ***************************/

.btn-outline-dark {
    width: 60px;
    height: 60px;
    padding: 15px;
    background-color: rgb(136, 77, 255);
    border-color: rgb(136, 77, 255);
}

.form-control {
    padding: .375rem .70rem;
}

.age-results-text {
    font-size: 50px;
    margin: 0px;
}

.age-inputs {
    color: rgb(134, 134, 134);
    margin-bottom: 2px;
}

.age-inputs-margin {
    padding: 5px;

}

.age-inputs-value {
    height: 50px;
    width: 80px !important;
    flex: none !important;
    border-radius: 8px !important;
}

.age-inputs-value:focus {
    border-color: blueviolet;
    box-shadow: 0 0 0 0.25rem rgba(134, 75, 255, 0.25);
    cursor: pointer;
}

.age-results {
    font-size: 50px;
    color: rgb(135, 76, 255);
    margin-right: 10px;
    margin-bottom: 0px;
}

.age-calculator {
    padding: 10px;
    border-radius: 20px 20px 80px 20px;
    box-shadow: 1px 1px 67px -29px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 1px 67px -29px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 67px -29px rgba(0, 0, 0, 0.75);
    margin-left: 0px;
}

/*************************** To do list styles ***************************/
.section-my-tasks {

    padding-bottom: 20px;
    border-radius: 20px;

    box-shadow: -1px 0px 17px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -1px 0px 17px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 0px 17px 0px rgba(0, 0, 0, 0.75);
}

.add-task-input {
    background-color: rgb(231, 231, 231);

    height: 40px;
}

.add-task-btn {
    background-color: rgb(231, 231, 231);
    border-color: rgb(231, 231, 231);
    height: 40px;
    width: 40px;
    padding: 0;
    font-size: 15px;
    border-radius: 50%;
}

.sort-task-btn {
    color: #ffffff;
    background-color: rgb(211, 64, 73);
    width: 78px;
    height: 40px;
}

.sort-task-btn:hover {
    opacity: 90%;
}

.margin-task-style {
    margin-left: 10px;
    margin-right: 10px;
}

.dateText {
    display: inline-block;
}

.day-task {
    font-size: 50px;
}

.specific-date {
    margin-top: 12px;
    margin-left: 12px;
}

.month-task {
    margin: 0;
}

.clear-tasks-btn {
    color: #ffffff;
    background-color: rgb(117, 50, 249);
    width: 90px;
    height: 40px;
    border-color: rgb(117, 50, 249);
    border-radius: 5px;
    margin-right: 10px;
}

.clear-tasks-btn:hover {
    opacity: 95%;
    background-color: rgb(117, 50, 249);
    border-color: rgb(117, 50, 249);
}

.clear-tasks-btn:focus {
    opacity: 95%;
    background-color: rgb(117, 50, 249) !important;
    border-color: rgb(117, 50, 249) !important;
}

.number-pending-tasks {
    margin-bottom: 0;
}

.edit-icon-task:hover {
    cursor: pointer;
    opacity: 50%;
}

.delete-icon-task:hover {
    cursor: pointer;
    opacity: 50%;
}

.task-disabled {
    color: rgb(255, 255, 255) !important;
    border-color: rgb(155, 155, 155) !important;
    background-color: rgb(155, 155, 155) !important;
    transition: 2s all ease;
}

.dis-btn-task .edit-icon-task {
    pointer-events: none;
    cursor: not-allowed;
}
/*************************** Product list style ***************************/
.product-list-title,
.div-total-order-quantity-style{
    color: rgb(44, 26, 17);
    font-size: 2.5rem;
}
.product-list{
    background-color: rgb(252, 248, 245);
    padding: 2rem 1.5rem 2rem 1.5rem;
}
.product-list-btn{
    background-color: rgb(255, 255, 255);
    border: .1px solid hsl(14, 86%, 42%);
    width: 9rem;
    padding: .5rem .5rem .5rem .5rem;
}
.product-list-btn:hover{
    background-color: rgb(255, 255, 255);
    border: .1px solid hsl(14, 86%, 42%);

}
.card-body{
    margin-top: 2rem;
}
.cart-content{
    margin-left: .5rem;
    max-width: 95%;
    padding: 1.5rem 0rem 1.5rem .5rem;
    background-color: rgb(255, 255, 255);
}
.cart-content-red-style{
    margin-left: .5rem;
    font-size: 1.6rem;
    color:hsl(14, 86%, 42%);
}
.cart-content-parr,
.dessert-name{
    color: hsl(12, 20%, 44%);
}
.border-add-cart{
    border: 2px solid rgb(255,255,255);
    border-radius: 50%;
    padding: 5px;
    height: 1.5rem;
    width: 1.5rem;
}
.delete-dessert-btn {
    color: #ffffff;
    background-color: rgb(255,255,255);
    width: 50px;
    height: 40px;
}

.delete-dessert-btn:hover {
    opacity: 90%;
}
.border-delete-cart{
    
    border: 2px solid rgb(202, 175, 167);
    border-radius: 50%;
    padding: 5px;
    height: 1.5rem;
    width: 1.5rem;
}
.cart-empty{
    animation: messageError 1.5s ease;
}
.dessert-quantity{
    color:hsl(14, 86%, 42%);
}
.dessert-price{
    color: rgb(155, 155, 155);
}
.dessert-total-price{
    color: rgb(120, 120, 120);
}
.div-total-order-text-style{
    margin-bottom: 0;
    color: hsl(14, 65%, 9%);
}
.div-total-order-quantity-style{
    margin-bottom: 0;
}
.div-confirm-order{
    background-color: rgb(252, 248, 245);
    padding: .5rem 0 .5rem .5rem;
    border-radius: 10px;
    margin-left: .5rem;
    width: 96% !important;
}
.div-showing-desserts{
    padding-left: 0 !important;
}
.carbon-neutral-text{
    color: hsl(12, 20%, 44%);
    margin: 0 0 0 .4rem;
    font-size: 15px;
}
.width-confirm{
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.confirm-order-btn{
    width: 100% !important;
    color: rgb(255, 255, 255);
    background-color: hsl(14, 86%, 42%);
    border-color: hsl(14, 86%, 42%);
}
.confirm-order-btn:hover{
    background-color: hsl(14, 86%, 42%);
    border-color: hsl(14, 86%, 42%);
    color: rgb(255, 255, 255);
    opacity: 85%;
}
.confirm-order-btn:active {
    background-color: hsl(14, 86%, 42%) !important;
    border-color: hsl(14, 86%, 42%) !important;
    color: rgb(255, 255, 255) !important;
}

    
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .accordion {
        width: 20%;
    }

    .padding-medium-results {
        padding: 20px !important;
        border-radius: 0px 0px 20px 20px;
    }

    .padding-medium-data {
        border-radius: 20px 20px 0 0;
    }

    .error-form br {
        display: none;
    }

    .span-style-lg {
        margin-left: 3px;
    }

    .margin-results {
        margin-top: 10%;
    }

    .age-inputs-margin {
        width: 110px;
        margin-left: 10px;
    }

    .age-results-text {
        font-size: 70px;
        margin: 0px;
    }

    .age-results {
        font-size: 70px;
    }

    .age-inputs-value {
        width: 100px !important;
    }

    .age-calculator {
        border-radius: 20px 20px 150px 20px;
    }

    .section-my-tasks {
        margin: 15% 5% 5% 5% !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .accordion {
        width: 17%;
    }

    .padding-medium-results {
        padding: 20px 10px 10px 10px !important;
        border-radius: 0 20px 20px 0;
        height: auto;
    }

    .padding-medium-data {
        padding: 20px !important;
        border-radius: 20px 0 0 20px;
    }

    .btn-primary-style {
        font-size: 13px !important;
        width: 80px;
        height: 40px;
    }

    .fs-4 {
        display: flex;
        font-size: 18px !important;
        align-items: center;
    }

    .error-form br {
        display: none;
    }

    .span-style-lg {
        margin-left: 3px;
    }

    .margin-results {
        margin-top: 40%;
    }

    .your-results-style {
        height: 50%;
        width: 268px;
        margin-left: 0px;
    }

    .your-results-style .col-12 {
        padding-left: 25px;
        padding-right: 25px;
        height: 128px;
        align-items: center;
    }

    .ms-2 {
        margin-left: 50px !important;
    }

    .age-results-text {
        font-size: 80px;
        margin: 0px;
    }

    .age-results {
        font-size: 80px;
    }

    .start-50 {
        margin-left: 28%;

    }

    .justify-content-md-start {
        margin-left: 50px;

    }

    .margin-button {
        padding: 20px;
        margin-left: 50px !important;
        margin: 0px !important;
    }

    .width-hr {
        margin-left: 30px;
        width: 80% !important;
    }

    .age-calculator {
        border-radius: 20px 20px 200px 20px;
    }

    .btn-outline-dark {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .section-my-tasks {
        margin: 5% 15% 5% 15% !important;
    }

    .add-task-btn {
        height: 40px;
        width: 40px;
        padding: 0 !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .fs-lg {
        font-size: 14px;
    }

    .fs-lg-un {
        font-size: 20px !important;
    }

    .marginstart {
        margin-top: 10px;
        margin-right: 5px;
        margin-bottom: 0;
    }

    .w-75 {
        width: 75% !important;
    }

    .fs-4 {
        margin-left: 5px;
        font-size: 24px !important;

    }

    .span-style-lg {
        margin-left: 25px;
    }

    .error-form br {
        display: block !important;
    }

    .margin-results {
        margin-top: 20%;
    }

    .your-results-style {
        height: 50%;
        width: auto;
        margin-right: 10px;
    }

    .ms-2 {
        margin-left: 60px !important;
    }

    .age-results-text {
        font-size: 90px;
        margin: 0px;
    }

    .age-results {
        font-size: 90px;
    }

    .start-50 {
        margin-left: 30%;

    }

    .age-calculator {
        border-radius: 20px 20px 250px 20px;
    }

    .age-inputs-margin {
        width: 150px;
    }

    .age-inputs-value {
        width: 120px !important;
    }

    .btn-outline-dark {
        width: 80px;
        height: 80px;
        padding: 15px;
    }

    .add-task-btn {
        height: 40px;
        width: 40px;
        padding: 0 !important;
    }
    .section-my-tasks {
        margin: 5% 25% 5% 25% !important;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .accordion {
        width: 10%;
    }

    .fs-lg {
        font-size: 16px;
    }

    .marginstart {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .fs-lg-un {
        font-size: 28px !important;
    }

    .w-75 {
        width: 50% !important;
    }

    .fs-4 {
        font-size: 24px !important;

    }

    .span-style-lg {
        margin-left: 3px;
    }

    .error-form br {
        display: none !important;
    }

    .margin-results {
        margin-top: 18%;
    }

    .padding-medium-results {
        max-width: 475px;
    }

    .padding-medium-data {
        max-width: 475px;
    }

    .age-calculator-app {
        padding: 80px !important;
    }
    .section-my-tasks {
        margin: 5% 30% 5% 30% !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .fs-lg {
        font-size: 20px !important;
    }

    .error-form br {
        display: none !important;
    }

    .margin-results {
        margin-top: 14%;
    }

    .age-calculator-app {
        padding: 170px !important;
    }
}