html {
	background: var(--guttypress-wizard-background);
    margin: 0;
    padding: 0;
	--guttypress-wizard-background: #1e1e1e;
	--guttypress-wizard-background-lighter-10: #2f2f2f;
}

body {
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    color: var(--mainColor);
}

body.guttypress-wizard {
    padding: 0px;
    margin: 15px auto;
    max-width: 100%;
    border: none;
    width: 100%;
    min-height: calc(100vh - 45px);
    box-shadow: 0px 2px 4px 0px #0000000D;
    background: none;
}

.dashicons {
    vertical-align: middle;
}

.guttypress-option .guttypress-setup-content h1,
.guttypress-option .guttypress-setup-content h2,
.guttypress-option .guttypress-setup-content h3 {
    color: var(--headingsColor);
    margin: 2rem 0;
    border: none;
    padding: 0;
}

.guttypress-option .guttypress-setup-content h1 {
    font-size: 30px;
    font-weight: 600;
}

.guttypress-option .guttypress-setup-content h1 span {
	color: var(--wp-admin-theme-color);
}

p {
    line-height: 1.5rem;
}

p.description {
    color: var(--descColor);
    font-size: 13px;
    font-style: normal;
    margin-bottom: 2rem;
}

iframe {
    border: 0px;
    pointer-events: none;
    height: 900px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
}

.required {
    color: red;
    margin-left: 0.2rem;
}

body.guttypress-wizard input {
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

body.guttypress-wizard input[type="text"],
body.guttypress-wizard input[type="color"],
body.guttypress-wizard input[type="password"],
body.guttypress-wizard input[type="number"],
body.guttypress-wizard textarea,
body.guttypress-wizard select {
    width: 100%;
    display: inline-block;
    border: 1px solid var(--borderColorLight);
    background-color: var(--secondaryBackgroundLight);
    transition: all 150ms linear;
	margin: 0;
	font-weight: normal;
}

body.guttypress-wizard input[type="color"] {
    border-radius: 50px;
    width: 40px;
    padding: 0;
    height: 40px;
    -webkit-appearance: none;
    cursor: pointer;
}

body.guttypress-wizard input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
body.guttypress-wizard input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 50px;
}

body.guttypress-wizard label {
    width: 100%;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--mainColor);
}

body.guttypress-wizard .list-indent {
	margin-left: 50px;
}

.media-frame-title h1,
.uploader-inline h2 {
    border: none;
}

.guttypress-wizard .wrap iframe {
    max-width: 100%;
}

.wp-core-ui select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
select:focus,
textarea:focus {
    border-color: var(--wp-admin-theme-color);
    box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
    outline: 2px solid transparent;
    background-color: #FFFFFF;
}

.spinner {
    display: inline-block;
    vertical-align: middle;
}

.guttypress-wizard-content {
    width: 100%;
    padding: 25px 40px 40px;
}

.guttypress-back {
	display: block;
    margin: 24px 0;
    animation: guttypress-slide-from-right 0.14s ease-in-out;
}

.guttypress-back a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    gap: 16px;
}

.guttypress-back a:hover {
    text-decoration: none;
}

.guttypress-option {
	display: flex;
	width: 100%;
}

.guttypress-tab-form-step-2,
.guttypress-tab-form-step-3,
.guttypress-tab-form-step-4 {
    flex-direction: column;
    gap: 2rem;
    display: flex;
}

.guttypress-setup-content {
	width: 100%;
	background: #FFFFFF;
	border-radius: 12px;
	padding: 2rem;
	margin-right: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 100;
}

.guttypress-setup-sidebar {
    width: 400px;
	background: var(--guttypress-wizard-background);
	color: #ccc;
	padding: 25px;
}

.guttypress-setup-sidebar-header, .guttypress-site-identity {
	display: flex;
    gap: 12px;
    align-items: center;
}

.guttypress-setup-sidebar-header {
	justify-content: space-between;
	margin-bottom: 3rem;
}

.guttypress-site-icon {
	width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.guttypress-setup-steps {
    padding: 0;
    margin: 0px auto;
    list-style: none outside;
    display: flex;
    max-width: 100%;
    justify-content: space-between;
    flex-direction: column;
    animation: guttypress-slide-from-right 0.14s ease-in-out;
}

.guttypress-setup-steps li {
    display: flex;
    margin: 0;
    align-items: center;
	color: #949494;
}

.guttypress-setup-steps li a {
    text-decoration: none;
    position: relative;
    z-index: 1;
    color: #949494;
    font-size: 13px;
    display: flex;
    gap: 4px;
    padding: 0.5rem;
    border-radius: 2px;
    width: 100%;
    align-items: center;
}

.guttypress-setup-steps li a:hover {
	background: var(--guttypress-wizard-background-lighter-10);
	color: #e0e0e0;
}

.guttypress-setup-steps li.active {
    text-decoration: none;
    position: relative;
    z-index: 1;
    line-height: 24px;
    background: var(--guttypress-wizard-background-lighter-10);
}

.guttypress-setup-steps li.active a {
	color: #e0e0e0;
    font-weight: 500;
}

.guttypress-setup-actions.step {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.guttypress-sidebar-actions {
	width: 100%;
    padding: 20px 45px;
    border-top: 1px solid var(--guttypress-wizard-background-lighter-10);
    display: flex;
    gap: 16px;
    margin-top: 4rem;
    position: fixed;
    bottom: 0;
    background: var(--guttypress-wizard-background);
    left: 0;
    z-index: 10;
}

.btn {
    padding: 10px 24px;
    border-radius: 2px;
    font-family: var(--fontFamily);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 150ms linear;
}

.btnPrimary {
    background-color: var(--wp-admin-theme-color);
    color: #FFFFFF;
}

.btnPrimary:hover, .btnPrimary:active {
    background: var(--wp-admin-theme-color-darker-10);
    color: #fff;
}

.btnPrimary.disabled {
    background: var(--wp-admin-theme-color-darker-10);
    color: #fff;
    cursor: not-allowed;
}

.btnSecondary {
    color: var(--mainColor);
    border: 1px solid transparent;
    background-color: var(--secondaryBackground);
}

.btnSecondary:hover, .btnSecondary:active {
    background: #FFFFFF;
    border: 1px solid var(--wp-admin-theme-color);
    color: var(--wp-admin-theme-color);
}

.textLink {
	font-size: 13px;
	color: #949494;
	text-decoration: none;
}

.textLink:hover {
	color: #e0e0e0;
	text-decoration: underline;
}

.skipLink {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.site-setup .intro {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

.img-placeholder {
    max-width: 100%;
    margin: 10px 0;
    border: 2px dashed var(--borderColorLight);
    padding: 2px;
    border-radius: 6px;
    max-height: 100px;
    width: auto;
	display: flex;
}

.img-placeholder.site-icon {
    border: none;
    left: 95px;
    top: -5px;
    height: 32px;
    width: 32px;
}

.wrap-site-icon {
    position: relative;
    overflow: hidden;
}

.wrap-site-icon img {
    position: absolute;
}

.wrap-list-card {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    display: grid;
    gap: 24px;
}

.wrap-list-card .card {
    display: flex;
    text-decoration: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: none;
    box-shadow: none;
    margin: 0;
    background: none;
}

.wrap-list-card .card .thumb {
    background: #CCC;
    height: 250px;
    margin: 16px 0 0 0;
    position: relative;
}

.wrap-list-card .card input {
    max-height: 0;
    max-width: 0;
    opacity: 0;
    position: relative;
}

.wrap-list-card .card input:checked[type=checkbox] ~ .thumb,
.wrap-list-card .card input:checked[type=radio] ~ .thumb {
    box-shadow: 0 0 10px #CCC;
}

.wrap-list-card .card input:checked[type=checkbox] ~ .thumb::after,
.wrap-list-card .card input:checked[type=radio] ~ .thumb::after {
    font-family: "dashicons";
    content: "\f15e";
    color: #fff;
    font-size: 35px;
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--wp-admin-theme-color);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guttypress_nl_consent_container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

#guttypress_nl {
	margin-bottom: 0;
}

.guttypress-items {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.guttypress-item {
    display: flex;
    gap: 1rem;
    border: 1px solid var(--borderColorLight);
    padding: 2rem;
}

.guttypress-item-integration {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.guttypress-item:hover,
.guttypress-item:focus {
    cursor: pointer;
}

.guttypress-item-check {
    margin: 0.1rem 0 0 0;
}

.guttypress-item-img img {
    max-height: 100%;
    object-fit: contain;
}

.guttypress-item-header {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guttypress-item-desc p {
    margin: 0.5rem 0 0 0;
}

.guttypress-setup-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.guttypress-setup-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
}

.guttypress-setup-list li svg {
    border: 1px solid var(--wp-admin-theme-color);
    background: var(--wp-admin-theme-color);
    fill: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.guttypress-setup-newsletter {
    border: 1px solid var(--borderColorLight);
    padding: 0 2rem;
    border-radius: 12px;
    margin: 0 0 2rem 0;
}

@keyframes guttypress-slide-from-right{
	0%{
	  opacity:0;
	  transform:translateX(50px);
	}
	to{
	  opacity:1;
	  transform:none;
	}
  }
  @keyframes guttypress-slide-from-left{
	0%{
	  opacity:0;
	  transform:translateX(-50px);
	}
	to{
	  opacity:1;
	  transform:none;
	}
}

/* Modal Styles */
.guttypress-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.guttypress-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 4px;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.guttypress-modal-content h2 {
    margin-top: 0;
    color: var(--headingsColor);
}

.guttypress-modal-actions {
    margin-top: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.guttypress-modal-actions button {
    margin-left: 0;
}

.guttypress-marketplace-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive */
@media only screen and (max-width: 782px) {
    iframe {
		width: 100%;
        max-width: 100%;
        margin: inherit;
        min-width: inherit;
    }
	.guttypress-wizard .guttypress-option {
		display: block;
	}
	.guttypress-setup-sidebar {
		width: 100%;
	}
	.guttypress-sidebar-actions {
		position: relative;
		margin-top: 2rem;
		padding: 20px 0;
	}
    .guttypress-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .guttypress-item-universe {
        flex-direction: column;
    }
    .guttypress-setup-content::after {
        content: none;
    }
    .guttypress-marketplace-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
