/* Lien de téléchargement*/
.grad-download-btn {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 10px 0 8px 0px;
    position: relative;
    text-decoration: none;
    color: currentColor;
    font-family: 'IvyStyleSansLight';
    font-size: 24px;
	font-weight: 300;
    transition: all 0.3s ease;
}

.grad-download-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform-origin: right;
    transition: transform 0.7s ease;
}

.grad-download-btn:hover::after {
    transform: scaleX(0);
}

.grad-download-btn:hover {
    color: currentColor;
    text-decoration: none;
}

.grad-download-btn:not(:last-child) {
    margin-bottom: 7px;
}

.grad-download-btn svg{
    width: 25px;
    height: 25px;
    position: absolute;
    right: -3px;
    top: 14px;
}

.grad-download-btn:hover {
    color:  currentColor;
    text-decoration: none;
}


.grad-download-icon {
    display: flex;
    align-items: center;
}

.grad-download-text {
    flex: 1;
    max-width: 99%;
}

/* Error message */
.grad-error {
    display: inline-block;
    padding: 8px 12px;
    background: #fee;
    color: #c33;
    border-left: 3px solid #c33;
    border-radius: 4px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .grad-download-btn {
        font-size: 13px;
    }

    .grad-download-text {
        padding-right: 10px;
    }
   
}