:root {
     --wpblue: #2271b1;
     --wpbluedark: #135e96;
     --white: #ffffff;
     --smoothblack: #09121C;
     --wpgrey: #f0f0f0;
     --btngrey: #5e5e5e;
     --darkgrey: #757575;
     --bordergrey: #cccccc;
}

#adminmenumain,
#wpadminbar,
#wpfooter,
#wpbody-content > .update-nag,
#wpbody-content > .notice {
     display: none !important;
}

button, .usecases input[type="submit"], .themes input[type="submit"] {
     height: 35px;
     padding: 0;
     border: none;
     outline: inherit;
     font: inherit;
     background-color: var(--white);
     cursor: pointer;
}

a {
     text-decoration: none;
}

.wrapper {
     position: fixed;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: 99999;
     background-color: var(--wpgrey);
     overflow-y: auto;
}

.header {
     display: flex;
     align-items: center;
     position: fixed;
     width: 100%;
     height: 80px;
     padding-left: 40px;
     z-index: +1;
     background-color: var(--smoothblack);
}

.logo {
     vertical-align: top;
     height: 36px;
}

.container {
     display: flex;
     flex-direction: column;
     position: relative;
     width: 800px;
     min-height: 400px;
     border: 1px solid var(--bordergrey);
     margin: 160px auto 80px;
     padding: 50px 80px 80px;
     background-color: var(--white);
     text-align: center;
     box-sizing: border-box;
}

.counter {
     text-transform: uppercase
}

.big {
     width: 1150px;
}

.medium {
     width: 960px;
}

.headline {
     font-weight: 310;
     font-size: 35px;
}

.headline-small {
     font-weight: 310;
     font-size: 24px;
     margin: 0;
}

.content {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: center;
}

.preview-text {
     width: 100%;
}

.buttons {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 100%;
     margin: 15px auto;
}

.btn-row {
     display: flex;
     flex-direction: row;
     justify-content: space-around;
     align-items: center;
     width: 60%;
     height: 20px;
     margin-top: 20px;
}

.btn-row button {
     width: 45%;
}

.btn-row button:first-child {
     text-align: right;
}

.divider {
     width: 1px;
     height: 100%;
     background-color: var(--bordergrey);
}

.btn {
     min-width: 125px;
     height: auto;
     margin: 20px 0;
     padding: 10px;
     border-radius: 3px;
}

.primary-btn {
     background-color: var(--wpblue);
     color: var(--white);
}

.primary-btn:focus,
.primary-btn:active,
.primary-btn:hover {
     background-color: var(--wpbluedark);
}

.secondarybtn {
     margin: 10px 0;
     background-color: var(--wpgrey);
     color: var(--wpblue);
     border: 1px solid var(--wpblue);
}

.secondarybtn:active,
.secondarybtn:focus,
.secondarybtn:hover {
     color: var(--wpblue);
}

.link-btn {
     color: var(--wpblue);
}

.link-btn:active,
.link-btn:focus,
.link-btn:hover {
     box-shadow: none;
     color: var(--wpbluedark);
     text-decoration: underline;
}

.usecases {
     display:-ms-grid;
     display: grid;
     -ms-grid-columns: 0fr 0fr 0fr 0fr;
     grid-template-columns: 0fr 0fr 0fr 0fr;
     width: 100%;
}

.usecase {
     display: flex;
     flex-direction: column;
     width: 110px;
     height: 95px;
     margin: 25px;
}

.usecase:active,
.usecase:focus,
.usecase:hover,
.usecase input:focus + label,
.usecase input:checked + label {
     background-color: var(--wpgrey);
}

.case-label {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
}

.dashicons {
     padding-bottom: 17px;
}
.usecases input[type=submit], .usecases input[type=radio], .themes input[type="submit"], .themes input[type=radio] {
     opacity: 0;
     position: fixed;
     width: 0;
}

input[type=checkbox] {
     opacity: 1;
     position: relative;
     width: 0;
}

.usecase:active {
     background-color: rgba(34, 113, 177, 0.8);
     color: var(--white);
}

.themes {
     display:-ms-grid;
     display: grid;
     -ms-grid-columns: 1fr 1fr;
     grid-template-columns: 1fr 1fr;
     width: 100%;
}

.theme {
     position: relative;
     width: 270px;
     height: auto;
     border: 1px solid var(--bordergrey);
     margin: 20px;
     box-sizing: border-box;
}

.msg {
     width: 100%;
}

.overlay {
     display: none;
     justify-content: center;
     align-items: center;
     position: absolute;
     width: 100%;
     height: 80%;
     top: 0px;
     left: 0px;
}

.details {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 175px;
     height: 50px;
     background-color: rgba(94, 94, 94, 0.8);
     color: var(--white);
     font-weight: 500;
}

.selection {
     display: none;
     position: absolute;
     width: 100%;
     height: 100%;
     top: -5px;
     left: -5px;
}

.themebtn:checked + .theme-label {
     border: 0px;
}

.theme:active .overlay,
.theme:hover .overlay,
.theme input:focus + label .overlay,
.theme input:checked + label .overlay {
     display: flex;
     background-color: rgba(240, 240, 240, 0.4);
}

.theme:active .selection {
     display: block;
     border: 5px solid var(--wpblue);
}

.themebtn:checked + label > .submit {
     display: block;
}

.theme-image {
     width: 100%;
     height: auto;
     border-bottom: 1px solid var(--bordergrey);
}

.theme-name {
     display: inline-flex;
     align-items: center;
     width: 100%;
     height: 100%;
     padding-left: 18px;
     text-align: left;
     box-sizing: border-box;
}

.theme-description {
     text-align: left;
}

.jetpack-logo {
     max-width: 120px;
}

.large-description-teaser {
     font-size: 23px;
     line-height: 1.3;
     font-weight: 600;
     max-width: 400px;
}

.preview-img {
     width: 520px;
     height: auto;
     border: 1px solid var(--bordergrey);
     margin-bottom: 25px;
}

.dashicons-search, .dashicons-edit {
     margin-right: 10px;
     color: #000000;
     text-decoration: none;
}

.fix-margin-top {
     margin-top: 20px;
}

.plugins-grid {
     display:-ms-grid;
     display: grid;
     -ms-grid-columns: 1fr 1fr;
     grid-template-columns: 1fr 1fr;
     row-gap: 20px;
     column-gap: 20px;
     width: 100%;
}

.toggle {
     display: flex;
     position: relative;
     border: 1px solid var(--bordergrey);
     padding: 20px;
     align-items: center;
}

.toggle:before{
     content: "";
     display: flex;
     align-self: flex-start;
     align-items: center;
     position: absolute;
     width: 40px;
     height: 21px;
     top: 10px;
     right: 10px;
     background: var(--white);
     border: 1px solid var(--bordergrey);
     border-radius: 100px;
     cursor: pointer;
     transition: all 0.5s;
}

.toggle:after {
     content: "";
     display: block;
     position: absolute;
     width: 15px;
     height: 15px;
     top: 14px;
     right: 33px;
     background: var(--smoothblack);
     border-radius: 50%;
     transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toggle-input {
     opacity: 0 !important;
     display: none !important;
     position: absolute;
}

.toggle-input:checked + .toggle:before {
     border-color: var(--wpblue);
     background: var(--wpblue);
}

.toggle-input:checked + .toggle:after {
     right: 14px;
     background: var(--white);
}


.toggle-input:checked + .toggle,
.toggle-input:focus + .toggle {
     border: 1px solid var(--wpblue);
}

.plugin-img {
     width: 128px;
     height: 128px;
}

.plugin-text {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     height: 200px;
     margin: 0 30px 0 20px;
     text-align: left;
}

.plugin-text h3 {
     margin-top: 0;
}

.plugin-text p {
     width: 100%;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
}

.plugin {
     display: flex;
     padding: 20px;
     border: 1px solid var(--bordergrey);
     box-sizing: border-box;
}

.toggle:focus {
     border: var(--wpblue);
}

.plugins-list, .themes-list {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     margin: 0 20px 20px;
     text-align: left;
     list-style: none;
     height: 20px;
}

.plugins-list .divider, .themes-list .divider {
     height: 18px;
     margin: 0 10px;
}

.plugins-list .divider:last-of-type, .themes-list .divider:last-of-type {
     display: none;
}

.plugins-list div {
     margin: 0 10px;
}

.plugins-list .divider:last-child {
     display: none;
}

.plugins-list {
     height: 100%;
     margin-bottom: 20px;
}

.summary-img {
     width: 280px;
     height: auto;
     margin-bottom: 25px;
     border: 1px solid var(--bordergrey);
}

.completed {
     margin: auto;
}

.loading {
     position: relative;
     width: 40px;
     height: 40px;
     margin: 20px auto;
     border-radius: 50%;
}

.loading:before, .loading::after {
     content: "";
     position: absolute;
     border-radius: inherit;
}

.loading:before {
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background-image: linear-gradient(0deg, var(--wpgrey) 0%, var(--wpblue) 100%);
     animation: spin .5s infinite linear;
}

.loading:after {
     width: 85%;
     height: 85%;
     top: 50%;
     left: 50%;
     background: var(--white);
     transform: translate(-50%, -50%);
}

@keyframes spin {
     to {
          transform: rotate(360deg);
     }
}

.abort-plugins {
     border: 1px solid var(--bordergrey);
     text-align: left;
}

.abort-plugin {
     display: flex;
     width: auto;
     min-height: 70px;
     padding: 15px;
     border-bottom: 1px solid var(--bordergrey);
     background-color: transparent;
}

.abort-plugin input[type=checkbox] {
     width: 25px;
     height: 25px;
     margin: 0 20px 0 0;
}

.abort-plugin > label {
     position: relative;
}

.abort-plugin input[type=checkbox]:checked::before {
     content: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);
     margin: 0;
     width: 100%;
     height: 100%;
}

.abort-plugin:last-of-type {
     border-bottom: 0;
}

.abort-plugin-content {
     display: flex;
     justify-content: space-between;
     position: relative;

}

.abort-plugin-content > span:first-child {
     min-width: 250px;
     width: 250px;
}

.abort-plugin-text {
     width: 440px;
}

.plugin-info {
     margin-top: 10px;
     color: var(--darkgrey)
}

.plugin-info span:first-child:after {
     content: " | ";
     margin: 0 10px;
     color: var(--darkgrey);
}

.abort-summary-img {
     width: 400px;
     height: 100%;
}

.upload-area {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     height: 200px;
     border: 4px solid var(--bordergrey);
     border-style: dashed;
     margin: 20px auto;
     padding: 20px 0 25px;
}

#drag_upload_file #blueprint_file {
     display: none;
}