.tech_buttons {
    background-color: #171515;
    padding: 11px 18px;
}

.dashboard_type {
    display: flex;
}

.list-message {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.list-message > * {
    padding: 10px;
}

span {
    background-color: #171515;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial, serif;
    font-size: 17px;
    padding: 11px 32px;
    text-decoration: none;
    text-align: center;
}

.header {
    display: flex;
    -moz-box-shadow: 0 0 6px 0 #CCC;
    -webkit-box-shadow: 0 0 6px 0 #CCC;
    box-shadow: 0 0 6px 0 #CCC;
}

input {
    background-color: #fff;
    border-radius:6px;
    border:1px solid #dcdcdc;
    display:inline-block;
    cursor:pointer;
    color:#777777;
    font-family: Arial, serif;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
}

.shadow {
    -moz-box-shadow: 0 0 6px 0 #CCC;
    -webkit-box-shadow: 0 0 6px 0 #CCC;
    box-shadow: 0 0 6px 0 #CCC;
    border-radius: 22px 22px 22px 22px;
    -webkit-border-radius: 22px 22px 22px 22px;
    -moz-border-radius: 22px 22px 22px 22px;
}

.dash {
    position: relative;
    min-height: 90vh;
}

.contenu_dash {
    width: calc(100% - 484px);
    margin-left: auto;
    padding: 32px;
}

.lien_dash {
    display: block;
    cursor: pointer;
    color: var(--color-black);
    font-weight: 500;
    font-size: 18px;
}

.lien_dash:hover {
    color: var(--color-3);
}

.block_dash {
    box-shadow: 0 0 24px #dddddd;
    padding: 24px;
    overflow: auto;
}

.links {
    display: none;
    background-color: white;
    top: 66px;
    --menu-height: 0;
    width: 400px;
}

.row {
    align-items: center;
}

.block_dash_no_shadow {
    padding: 24px;
}

#loader {
    position: sticky;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #a9123f;
    border-bottom: 5px solid #a9123f;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.update-gift-list {
    background-color: #303030;
    margin-bottom: 10%;
}

.gift-list-input {
    font-family: sans-serif;
    font-weight: normal;
    color: black;
}

.gift-list-div {
    height: 100%;
    width: 100%;
}

.gift-list-title {
    color: #c72564;
    margin-bottom: 5%;
}

.gift-list-explain {
    margin-bottom: 4%;
}

#gift-list-message-input {
    padding: 6px 24px;
}

input.larger {
    width: 30px;
    height: 50px;
}

@media (max-width: 768px) {
    .contenu_dash {
        margin-left: 0;
        padding: 0;
        width: auto;
    }

    .elementor-widget-image {
        text-align: center
    }

    .elementor-widget-image a {
        display: inline-block
    }

    .elementor-widget-image a img[src$=".svg"] {
        width: 120px
    }

    .elementor-widget-image img {
        vertical-align: middle;
        display: inline-block
    }

    #loader {
        left: 45%;
    }
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 }
    to { bottom:0; opacity:1 }
}

@keyframes animatebottom {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
}