/*====================================
=            Admin Styles            =
====================================*/

h3 {
  line-height: 1.3rem;
}

.metabox-holder input,
.metabox-holder textarea {
  width: 100%;
  display: block;
}

.metabox-holder input {
  max-width: 250px;
}

.metabox-holder textarea {
  max-width: 500px;
}

.spinner {
  display: inline-block;
}

.submit-wrap .submit {
  float: left;
  padding-top: 0;
}

#filename {
  width: 50%;
}

.dot {
  height: 15px;
  width: 15px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.red {
  background-color: rgb(230, 73, 73);
}

.yellow {
  background-color: rgb(251, 255, 6);
}

.green {
  background-color: rgb(77, 214, 43);
}

.darkgrey {
  background-color: rgb(86, 87, 86);
}

.infoalert {
  position: relative;
  /* bottom: 230px;
  right: 10px;
  z-index: 99; */
  width: 98%;
  margin-top: 7px;
}
.toast {
  position: relative;
  background-color: #f5eded;
  border: 1px solid #e8e8e8;
  padding: 0;
}
.toast-header{
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
  
}

.toast-header, .toast-body {
  padding: 10px;
}

.toast img {
  vertical-align: middle;
}

.toast .close {
  float: right;
}

.plugin_options, .filestable {
  padding: 30px 0 0 0;
}

.plugin_options .grid {
  display: grid;
  grid-auto-columns: minmax(18rem, auto);
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  grid-gap: 1rem;
  margin-right: 20px;
}
.grid section {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(34,36,38,.15);
  padding: 2rem;
  position: relative;
}

/* wp allerts
updated, error, update-nag notice */
.alert {
  padding: 20px !important;
  margin: 30px 0;
  display: block;
}

#hideMe {
  -moz-animation: cssAnimation 0s ease-in 15s forwards;
  /* Firefox */
  -webkit-animation: cssAnimation 0s ease-in 15s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 15s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 15s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes cssAnimation {
  to {
      width:0;
      height:0;
      overflow:hidden;
  }
}
@-webkit-keyframes cssAnimation {
  to {
      width:0;
      height:0;
      visibility:hidden;
  }
}

.w-80p {
  width: 80%;
}
.w-100 {
  width: 100px;
}
.w-150 {
  width: 150px;
}
.w-50 {
  width: 50px;
}
.p-20 {
  padding: 20px;
}
.small {
  font-size: 11px;
}
.gray-100{
  color: #999;
}
.settings input[type="text"] {
  width: 100%;
}
.settings label, form input {
  display: inline-block;
}
.settings .row {
  display: block;
  margin-bottom: 1rem;
}
.settings span {
  display: inline-block;
  vertical-align: top;
}

.dashicons, .dashicons-before::before {
  margin-right: 10px;
  vertical-align: text-top;
}
.filestable .dashicons {
  font-size: 30px;
}

.green-button, .green-button input[type="submit"] {
  color: green;
}
.red-button, .red-button input[type="submit"] {
  color: red;
}
.green-button, .red-button {
  display: inline-block;
}
.green-button input[type="submit"], .red-button input[type="submit"]{
  padding: 10px;
  background-color: #fff;
}
.green-button input[type="submit"]:hover, .red-button input[type="submit"]:hover{
  background-color: #f9f9f9;
}
.green-button input[type="submit"]{
  border: 1px solid green;
}
.red-button input[type="submit"]{
  border: 1px solid red;
}
.align-right{
  text-align: right;
}
.f-left{
  float: left;
}
.l-button {
  display: inline-block;
  padding: 10px;
  background-color: #f9f9f9;
  margin: 7px 0;
  border: 1px solid #f4f4f4;
  text-decoration: none;
}
.l-button:hover{
  background-color: #f4f4f4;
  border: 1px solid #f9f9f9;
}
.a-right {
  float: right;
}
.redtxt {
  color: red;
}
.info {
  color: #999;
}
.topr{
  position: absolute;
  top: 10px;
  right: 10px;
}
.tooltip {
  display:inline-block;
  border-bottom:1px dotted #666;
  text-align:left;
  position: relative;
}

.tooltip .bottom {
  min-width:200px; 
  top:40px;
  left:50%;
  transform:translate(-50%, 0);
  padding:10px 20px;
  color:#444444;
  background-color:#FFFFFF;
  font-weight:normal;
  font-size:13px;
  border-radius:8px;
  position:absolute;
  z-index:99999999;
  box-sizing:border-box;
  box-shadow:0 1px 8px rgba(0,0,0,0.5);
  display:none;
}

.tooltip:hover .bottom {
  display:block;
}

.tooltip .bottom i {
  position:absolute;
  bottom:100%;
  left:50%;
  margin-left:-12px;
  width:24px;
  height:12px;
  overflow:hidden;
}

.tooltip .bottom i::after {
  content:'';
  position:absolute;
  width:12px;
  height:12px;
  left:50%;
  transform:translate(-50%,50%) rotate(45deg);
  background-color:#FFFFFF;
  box-shadow:0 1px 8px rgba(0,0,0,0.5);
}

.tooltip .top {
  min-width:200px; 
  top:-20px;
  left:50%;
  transform:translate(-50%, -100%);
  padding:10px 20px;
  color:#444444;
  background-color:#fff;
  font-weight:normal;
  font-size:13px;
  border-radius:8px;
  position:absolute;
  z-index:99999999;
  box-sizing:border-box;
  box-shadow:0 1px 8px rgba(0,0,0,0.5);
  display:none;
}

.tooltip:hover .top {
  display:block;
}

.tooltip .top i {
  position:absolute;
  top:100%;
  left:50%;
  margin-left:-12px;
  width:24px;
  height:12px;
  overflow:hidden;
}

.tooltip .top i::after {
  content:'';
  position:absolute;
  width:12px;
  height:12px;
  left:50%;
  transform:translate(-50%,-50%) rotate(45deg);
  background-color:#fff;
  box-shadow:0 1px 8px rgba(0,0,0,0.5);
}

/* Tabs Name Container */
.tabs-container{
  position: relative;
  padding: 2rem;
}
#tabs-titles{
  float:left;
  margin-right:10px;
  width: 23%;
}
#tabs-titles li{
  cursor:pointer;
  padding: 10px;
  border-bottom: 1px solid #eae8e8;
  margin: 0;
}
#tabs-titles li:hover, #tabs-titles li.current {
  background-color: #f9f9f9;
}
#tabs-titles li.current{
  font-weight:bolder;
}
#tabs-contents{
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(34,36,38,.15);
  padding: 2rem;
  position: relative;
  margin-left: 25%;
}
#tabs-contents li{
  display:none;
}
#tabs-contents li:first-child{
  display:block; /* first one content displayed by default */
}
