/* Styles for pro features */
.grow-only-for-pro th {
    opacity: .5;
    pointer-events: none;
}

.pro-version-wrapper {
    display: inline-flex;
    align-items: center;
}

.grow-only-for-pro select,
.grow-only-for-pro input {
    opacity: .5;
    cursor: pointer;
    pointer-events: none;
}

.pro-version-wrapper .pro-version-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 5px;
}

.pro-version-wrapper .pro-version-icon img {
    max-width: 20px;
}

.pro-version-wrapper .pro-version-icon p {
    margin: 0;
    color: #7e82de;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
}

/* Styles for sidebar */
.growanizer-cell {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .growanizer-cell .nav-tab-wrapper {
    flex-basis: 100%;
  }

  .growanizer-cell > form {
    max-width: 100%;
    margin-right: 40px;
  }

  @media screen and (max-width: 575px) {
    .growanizer-cell > form {
      margin-right: 0;
    }
  }

.section-theme {
    display: inline-block;
    min-width: 495px;
    max-width: 100%;
  }

  @media screen and (max-width: 575px) {
    .section-theme {
      display: block;
      min-width: 1px;
    }
  }

  .growanizer-sidebar {
    margin-top: 20px;
  }

  .grow_content_cell_title {
    margin: 0 0 10px;
    color: #7e82de;
    text-align: center;
    font-size: 18px;
  }

  .grow-sidebar__section {
    max-width: 350px;
    width: 100%;
    padding: 20px 15px;
    border-radius: 7px;
    box-shadow: 0 0 10px -5px #000;
    background-color: #fff;
  }

  .grow-sidebar__section h2 {
    margin-top: 0;
    color: #7e82de;
    text-align: center;
  }

  .grow-sidebar__section ul {
    margin-bottom: 17px;
    padding-left: 15px;
    list-style: circle;
  }

  .grow-sidebar__section ul + p {
    margin: 0;
    text-align: center;
  }

  .grow-sidebar__section .grow-button-upsell {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #f56640;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 1px #827f7f;
    color: #fff;
    background-color: #f56640;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: .3s all;
  }

  .grow-sidebar__section .grow-button-upsell br {
    display: none;
  }

/* Modal window */
.grow-pro-modal {
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
}

.grow-pro-modal_visible {
    opacity: 1;
    visibility: visible;
}

.grow-pro-modal * {
    box-sizing: border-box;
}

.grow-pro-modal__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}

.grow-pro-modal__body {
    position: fixed;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 100px));
    justify-content: center;
    max-width: 600px;
    width: 100%;
    transition: .3s all;
}

.grow-pro-modal_visible .grow-pro-modal__body {
    transform: translate(-50%, -50%);
}

.grow-pro-modal__content {
    max-width: 600px;
    width: 100%;
    padding: 30px;
    background-color: #fff;
}

@media screen and (max-width: 575px) {
    .grow-pro-modal__content {
        padding: 30px 15px;
    }
}

.grow-pro-modal__title {
    margin: 0 0 15px;
    color: #7e82de;
    text-align: center;
    font-size: 35px;
    line-height: 1.25;
}

@media screen and (max-width: 575px) {
    .grow-pro-modal__title {
        font-size: 28px;
    }
}

.grow-pro-modal__text {
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
}

.grow-pro-modal-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 424px) {
    .grow-pro-modal-buttons {
        flex-direction: column;
    }
}

.grow-pro-modal-buttons__button {
    margin: 0 10px;
}

@media screen and (max-width: 424px) {
    .grow-pro-modal-buttons__button {
        min-width: 165px;
    }
}

@media screen and (max-width: 424px) {
    .grow-pro-modal-buttons__button_get {
        margin-bottom: 15px;
    }
}

.grow-pro-modal-buttons__button_get a,
.grow-pro-modal-buttons__button_close a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 7px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: .3s all;
}

@media screen and (max-width: 424px) {
    .grow-pro-modal-buttons__button_get a,
    .grow-pro-modal-buttons__button_close a{
        width: 100%;
    }
}

.grow-pro-modal-buttons__button_get a {
    border: 1px solid #f56640;
    background-color: #f56640;
}

.grow-pro-modal-buttons__button_get a:hover {
    color: #f56640;
    background-color: #fff;
}

.grow-pro-modal-buttons__button_close a {
    border: 1px solid #7e82de;
    background-color: #7e82de;
}

.grow-pro-modal-buttons__button_close a:hover {
    color: #7e82de;
    background-color: #fff;
}