label.gcaptcha{
  position: relative;
      display: block !important;
}
.gcaptcha .help-tip {
    position: absolute;
    top: -5px;
    right: 18px;
    text-align: center;
    background-color: transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
}

.help-tip1:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;
	text-transform: capitalize;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;
	
}

.help-tip p {
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 10px;
    width: 200px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -2px;
    color: #FFF;
    font-size: 11px;
    line-height: 1.4;
	z-index: 10;
}
.help-tip img {
    position: relative;
    width: 18px;
    height: 18px;
}
.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    right:10px;
    top:-12px; 
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}
.help-msg {
    display: inline-block;
    margin-right: 5px;
    margin-top: 0px;
}
.help-tip-bottom img {
    position: relative;
    width: 18px;
    height: 18px;
}
.help-tip-bottom{
  position: relative;
  display: inline-block;
  padding: 8px 0;
}
.help-tip-bottom p {
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 10px;
    width: 200px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
   color: #FFF;
    font-size: 11px;
    line-height: 1.4;
    left: -8px;
      margin-top: 10px;
    margin-bottom: 0;
	z-index: 10;
}
.help-tip-bottom:hover p{
    display:block;
    transform-origin: 100% 0%;
	text-transform: capitalize;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;	
}
.help-tip-bottom p:before{ 
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    left:10px;
    top:-12px; 
}

.help-tip-bottom p:after{ 
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}



div[data-gf_dismissible_key="gravitycaptcha"] {
    color: #ffffff;
    background: #dc3232;
}
div[data-gf_dismissible_key="gravitycaptcha"] p{
  font-size: 18px;
  font-weight: bold;
}
div[data-gf_dismissible_key="gravitycaptcha"] .notice-dismiss:before {
    color: #ffffff;
    height: 25px;
    width: 25px;
    font-size: 24px;
    margin-top: 5px;
}
.admin-zzd-message p{
  font-size: 18px;
      padding: 10px;
  font-weight: 700;
}
.admin-zzd-message{
  margin-top: 30px;
  
}
	
/* CSS animation */

@-webkit-keyframes fadeIn {
    0% { 
        opacity:0; 
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}