/*
Theme Name: GeneratePress Child
Author: 
Description: Your description goes here
Version: 1.0
Template: generatepress

This is the child theme for GeneratePress theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

.button-icon-flex > a {
	display: flex!important;
	align-items: center;
	gap: 5px;
}

.inside-header {
    border-bottom: 1px solid #d4d4d4;
}

.footer-widgets-container {
    border-top: 1px solid #d4d4d4;
}

.wp-block-accordion-heading {
    margin-bottom: 0;
    padding: 5px 20px;
    margin-top: 15px;
}

.wp-block-accordion-heading button:hover,
.wp-block-accordion-heading button:focus {
	background: none!important;
	color: var(--contrast);
}

.wp-block-accordion-panel {
    padding: 15px 20px!important;
}



.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-grow {
	flex-grow: 1;
}

.kdnsd-downloader-form {
	max-width: 1000px;
	margin: auto;
	position: relative;
	background: var(--accent);
    padding: 10px;
	border-radius: 10px;
}

.kdnsd-downloader-form input[type="text"] {
	width: 100%;
}

.button-get-link {
	background: var(--accent);
	border-radius: 10px;
}

.button-download {
    width: 100%;
    text-align: center;
    background-color: var(--accent) !important;
}

.gap-10px > a {
	gap: 10px;
}

.hidden {
	display: none;
}

.loading-spin {
	position: absolute;
	top: calc(50% - 16px)!important;
	left: calc(50% - 20px);
	display: inline-block;
	border-radius: 50%;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.15);
	border-top-color: #000;
	animation: loading-spin-animation 0.8s linear infinite;
	width: 32px;
	height: 32px;
	border-width: 3px;
}

/* Dark mode */
.loading-spin.dark {
	border-color: rgb(30 115 190 / 30%);
	border-top-color: #1e73be;
}

/* Center */
.loading-spin.centered {
	margin-left: auto;
	margin-right: auto;
}

/* Animation */
@keyframes loading-spin-animation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}