#post-body #post-body-content {
  margin-right: 0px;
}

.gmb-settings-page-header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmb-settings-page-header-container > .gmb-settings-page-header {
  padding: 0px;
}

.beta-label-tag {
  color: white;
  background-color: #8dc541;
  font-weight: bold;
  border-radius: 4px;
  margin-left: 4px;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
}

.wpl-gmb-login-button-container {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

#tab-gmb-settings .wpl-gmb-main-desc-help {
  margin-top: 0px;
}

#wpl-gmb-general-settings-container {
  display: flex;
  justify-content: space-between;
}

.general-settings-cell {
  flex: 0 1 45%;
}

#wpl-gmb-post-frequency-label-container {
  display: flex;
  justify-content: space-between;
}

#general-setting-toggles-cell {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.toggle-container {
  margin: 5px;
}

#gmb-location-picker-container {
  display: flex;
  flex-direction: column;
  padding: 5px;
  width: 40%;
  background-color: lightgrey;
  border: solid 2px slategray;
}

#wpl-update-gmb-location-list {
  margin: 5px 0px;
}

.wpl-gmb-location-header {
  margin-bottom: 1px;
}

.wpl-gmb-location-tag {
  margin: 3px 0px;
  padding: 5px;
  background-color: white;
  display: flex;
  align-items: center;
}

.wpl-gmb-location-tag strong {
  margin-left: 3px;
  margin-right: 3px;
  font-size: 1.1em;
}

#wpl-update-gmb-location-button {
  margin-top: 5px;
}

#wpl-update-gmb-location-button:focus {
  outline: none;
}

#wpl-update-gmb-location-message-container, #wpl-update-gmb-settings-message-container {
  display: inline-block;
  text-align: center;
  min-width: 170px;
  margin-top: 5px;
  margin-left: 10px;
}

.wpl-dashicon {
   animation: dashicons-spin 1s infinite;
   animation-timing-function: linear;
}

@keyframes dashicons-spin {
   0% {
      transform: rotate( 0deg );
   }
   100% {
      transform: rotate( 360deg );
   }
}

.wpl-gmb-connected-status-container {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8ec547;
    color: white;
}

.wpl-gmb-connected {
  border: solid 2px #8ec547;
}

.wpl-gmb-disconnected {
  border: solid 2px tomato;
}

.wpl-gmb-buttons-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#wpl-gmb-default-link-field, #wpl-gmb-default-photo-field {
  margin-bottom: 3px;
  width: 100%;
}

/*Checkbox Style*/
input[type=checkbox]{
  height: 0;
  width: 0;
  visibility: hidden;
}

label {
  cursor: pointer;
  text-indent: -9999px;
  width: 50px;
  height: 25px;
  background: grey;
  border-radius: 100px;
  position: relative;
}

label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 23px;
  height: 23px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

input:checked + label {
  background: #bada55;
}

input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

label:active:after {
  width: 35px;
}
.checkbox-label-slider {
  display: inline-block;
}

#tab-gmb-settings hr {
  border-bottom: none;
}

#tab-gmb-settings .wpl-gmp-settings-checkbox {
  min-width: 0px;
  margin: 0px;
  border: none;
}

#wpl-gmb-default-content-field {
  width:100%;
  height:140px;
}

#wpl-gmb-clear-settings-button {
  color:tomato;
}

#wpl-gmb-clear-btn-container {
  text-align:right;
}

#wpl-gmb-last-status-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-top: 10px;
}

#wpl-gmb-last-status-container button {
  border: none;
  color: tomato;
  background: none;
}

.schedule-view-container #wpl-gmb-last-status-container {
  color: white;
}

#wpl-gmb-last-status-container button:focus {
  outline: 0;
}

#wpl-gmb-reset-post-time-container {
  display: flex;
  justify-content: center;
  margin-top: 3px;
}

#wpl-gmb-default-sharing-settings-text-container {
  margin-bottom: 12px;
}

/*Range Slider Style*/
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 13.8px 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  height: 8.4px;
}

input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}

input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

/*tooltip Styles*/
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .dashicons-editor-help {
  margin-top: -3px;
}

.wpl-gmb-defaults-container .tooltip .dashicons-editor-help {
  margin-top: -1px;
}

.wpl-gmb-defaults-container > div {
  margin-bottom: 0.8rem;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.lefttooltip {
  top: -5px;
  right: 105%;
}

.tooltip .tooltiptext a {
  color: white;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/*Feature Request Tab*/
.submit-feature-request-container {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.submit-feature-request-text {
  font-size: 14px;
}

/*Schedule view*/
.schedule-view-container {
    display: flex;
}

@media all and (max-width: 1560px) {
  .schedule-view-container {
    flex-direction: column;
  }
  .schedule-view-container .preview-container, .schedule-view-container .dropzone-section-container {
    width: 100%;
  }
  .schedule-view-container .preview-cell {
    width: 40%;
  }
}

.preview-container {
  width: 35%;
  background-color: #333;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.preview-cell {
  background-color: white;
  height: 90%;
  width: 65%;
  min-width: 430px;
  border-radius: 15px 15px 0px 0px;
  font-family: Helvetica, Arial, Sans-Serif;
  overflow: hidden;
}

.preview-cell-photo-text {
  color: white;
  float: left;
  padding: 15px 10px;
  font-size: 1em;
  pointer-events: none;
  user-select: none;
}

.preview-cell-photo {
  height: 53%;
  background-color: #333;
  pointer-events: none;
  user-select: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-image set in gmb-schedule-view.php*/
}

.preview-cell-text-area {
    background-color: white;
    height: 31%;
    padding: 10px;
    pointer-events: none;
    user-select: none;
    word-wrap: break-word;
    overflow: hidden;
  }

.preview-cell-button {
  font-size: 0.8em;
  height: 40px;
  width: 120px;
  margin: 5px;
  pointer-events: none;
  user-select: none;
}

.dropzone-header-section {
  height: 100px;
  background-color: white;
  border: solid 1px #333;
  padding: 5px;
}

.dropzone-section-container {
  background-color: #333;
  height: 550px;
  width: 65%;
}

.dropzone-section-container h4 {
  color: white;
  margin-bottom: 0px;
  margin-left: 4px;
}

.preview-cell-button {
  border-radius: 5px;
}

.dropzones {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  margin: 0px auto 15px auto;
}

#dropzone-controls-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%;
  margin-top: 10px;
}

#dropzone-controls-container button {
  margin: 0px 10px;
}

.schedule-dropzone {
  flex: 1 1 20%;
  border: solid 2px white;
  height: 120px;
  margin: 5px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
}

#dropzone-0 {
  border-color:#56aa68;
}

.schedule-dropzone > .draggable {
  flex: none;
  min-height: auto;
  margin: 0;
}

.draggable {
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  flex: 0 1 19%;
  min-height: 150px;
  background-color: grey;
  overflow: hidden;
  margin: 5px;
}

.draggable .listing-cell-controls-container .unscheduled-control,  .draggable .listing-cell-controls-container .scheduled-control, .draggable .listing-cell-controls-container .exclusion-control {
  display: none;
  color: white;
  margin: 2px;
}

#active-listings-container .draggable:hover .listing-cell-controls-container .unscheduled-control,
.schedule-dropzone .draggable:hover .listing-cell-controls-container .scheduled-control,
#hidden-listings-container .draggable:hover .listing-cell-controls-container .exclusion-control {
  display: flex;
}

.listing-cell-controls-container {
  display:flex;
  flex-direction: column;
  padding: 5px;
}

.schedule-dropzone .listing-cell-controls-container {
  flex-direction: row;
}

.draggable .listing-cell-controls-container button {
  display: flex;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50px;
}

.draggable .listing-cell-controls-container .add-to-schedule-button, #agree-to-terms-button {
  border: solid 1px cornflowerblue;
  background-color: cornflowerblue;
}

.draggable .listing-cell-controls-container .add-to-schedule-button:hover, #agree-to-terms-button:hover {
  background-color: white;
  color: cornflowerblue;
}

.draggable .listing-cell-controls-container .hide-post-button, #cancel-terms-button {
  border: solid 1px tomato;
  background-color: tomato;
}

.draggable .listing-cell-controls-container .hide-post-button:hover, #cancel-terms-button:hover {
  background-color: white;
  color: tomato;
}

.draggable .listing-cell-controls-container .remove-from-schedule-button {
  border: solid 1px orangered;
  background-color: orangered;
  height: 30px;
  width: 30px;
}

.draggable .listing-cell-controls-container .remove-from-schedule-button:hover {
  background-color: white;
  color: orangered;
}

.draggable .listing-cell-controls-container .remove-from-exclusion-button {
  border: solid 1px rebeccapurple;
  background-color: rebeccapurple;
}

.draggable .listing-cell-controls-container .remove-from-exclusion-button:hover {
  background-color: white;
  color: rebeccapurple;
}

.listing-cell-description {
  padding-left: 5px;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
}

.cell-description-text {
  margin-left: 5px;
}

.listing-cells-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  margin: 0px -5px;
  min-height: 170px;
  max-height: 600px;
  overflow-y: auto;
  background-color: lightgrey;
}

.schedule-section-header {
  margin-bottom: 0px;
}

#clear-excluded-button-container {
  display: flex;
  justify-content: flex-end;
}

#clear-excluded-button {
  border: none;
  background: none;
  color: tomato;
  padding: 0px;
  margin-top: 5px;
}

.preview-container-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  margin-top: 10px;
  margin-left: 5px;
}

.preview-container-label strong {
  font-size: 1.2em;
}

#dropzone-controls-container .scheduling-button {
  border-color: white;
  border-width: 2px;
  color: white;
}

#post-next-button {
  background-color: #56aa68;
}

#post-next-button:hover {
  color: #56aa68;
  background-color: white;
  border: solid 2px #56aa68;
}

.schedule-area-text {
  color: white;
  padding-left: 5px;
}

#save-schedule-button {
  background-color: cornflowerblue;
}

#save-schedule-button:hover {
  color: cornflowerblue;
  background-color: white;
  border: solid 2px cornflowerblue;
}

#clear-schedule-button {
  background-color: tomato;
}

#clear-schedule-button:hover {
  color: tomato;
  background-color: white;
  border: solid 2px tomato;
}

#new-custom-post-button {
  background-color: rebeccapurple;
}

#new-custom-post-button:hover {
  color: rebeccapurple;
  background-color: white;
  border: solid 2px rebeccapurple;
}

#schedule-top-section-wrapper {
  margin: auto;
  max-width: 950px;
}

#wpl-schedule-save-status {
  padding-top: 3px;
  margin-left: 10px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-active {
  display: flex;
}

.lightbox-modal {
  width: 30%;
  min-width: 450px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.lightbox-title {
  font-size: 23px;
  font-weight: 500;
  padding-bottom: 5px;
}

.lightbox-terms-container {
  padding: 5px;
  text-align: left;
  border-top: solid 1px #999;
  border-bottom: solid 1px #999;
}

.lightbox-terms-container p {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 1px;
  font-weight: 900;
}

.lightbox-button-container {
  display: flex;
  justify-content: flex-end;
  padding-top: 5px;
}

.lightbox-button-container .lightbox-modal-button {
  color: white;
  margin-left: 10px;
}

.lightbox-button-container .toggle-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#agree-to-terms-button {
  display: flex;
  align-items: center;
}

.gmb-login-container {
  padding:10px;
}

.gmb-login-container p {
  font-size: 1.2em;
}
