/**
 * Admin Welcome Screen
 */

body.toplevel_page_stackable #wpcontent {
  padding-left: 0;
}

body.toplevel_page_stackable .wrap {
  margin: 0;
}

/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/

.gutenberg .ugb-editor-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
  color: #8e979e;
  padding: 2em 0 0;
  background: #fff;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  display: block;
}

.gutenberg .ugb-editor-label:first-child {
  padding-top: 0;
}

[class*="ugb-"] form[class*="-link"],
form[class*="ugb-"][class*="-link"],
[class*="ugb-"] + form[class*="-link"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[class*="ugb-"].alignfull {
  border-radius: 0 !important;
}

body.toplevel_page_stackable .s-header,
body.toplevel_page_stackable .s-body-container {
  padding: 50px;
}

body.toplevel_page_stackable .s-header {
  background: -webkit-gradient(linear, left top, right top, from(#ab5af1), to(#fb6874));
  background: linear-gradient(to right, #ab5af1, #fb6874);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 100px;
}

body.toplevel_page_stackable .s-header img {
  height: 50px;
}

body.toplevel_page_stackable h1 {
  color: #fff;
  font-size: 2.5em;
  font-weight: bold;
}

body.toplevel_page_stackable h2 {
  font-size: 2em;
}

body.toplevel_page_stackable h3 {
  font-size: 1.5em;
}

body.toplevel_page_stackable .s-box {
  -webkit-box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
  box-shadow: 0 5px 5px 0 rgba(18, 63, 82, 0.035), 0 0 0 1px rgba(176, 181, 193, 0.2);
  background-color: #fff;
  border-radius: 12px;
  padding: 60px 35px;
}

body.toplevel_page_stackable .s-button {
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  cursor: pointer;
  opacity: 1;
  background: #ab5af1;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  box-shadow: none !important;
  color: #fff;
  text-decoration: none;
  padding: .75em 1.25em;
  display: block;
  margin: 0 auto;
  max-width: 200px;
  text-align: center;
}

body.toplevel_page_stackable .s-button:hover {
  opacity: .85;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

body.toplevel_page_stackable .s-body-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  grid-gap: 30px;
  padding-top: 0;
  margin-top: -50px;
}

body.toplevel_page_stackable .s-body-container *:first-child {
  margin-top: 0 !important;
}

body.toplevel_page_stackable .s-body-container *:last-child {
  margin-bottom: 0 !important;
}

body.toplevel_page_stackable .s-body-container p,
body.toplevel_page_stackable .s-body-container li {
  font-size: 18px;
}

body.toplevel_page_stackable .s-body-container li {
  margin-bottom: .6em;
}

body.toplevel_page_stackable .s-side h2,
body.toplevel_page_stackable .s-side h3 {
  text-align: center;
}

body.toplevel_page_stackable .s-gambit-logo {
  display: inline-block;
  vertical-align: middle;
  padding-top: 10px;
  margin: 0 10px;
}

body.toplevel_page_stackable .s-gif {
  display: block;
  margin: 0 auto;
}

body.toplevel_page_stackable .s-plus-button {
  height: 1em;
  vertical-align: top;
  width: 1em;
}

@media screen and (max-width: 960px) {
  body.toplevel_page_stackable .s-body-container {
    grid-template-columns: 1fr;
  }
}