/* Exad Dual Button Style Start */

.exad-dual-button{
    display: table;
}
.exad-dual-button.exad-dual-button-align-left{
    margin-right: auto;
}
.exad-dual-button.exad-dual-button-align-center{
    margin-left: auto;
    margin-right: auto;
}
.exad-dual-button.exad-dual-button-align-right{
    margin-left: auto;
}
.exad-dual-button-action{
    display: inline-block;
    text-decoration: none;
}
.exad-dual-button-primary {
    position: relative;
}
.exad-dual-button-connector{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%); 
    -webkit-transform: translate(50%, -50%);
    z-index: 10;
}
.exad-dual-button-connector span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); 
    -webkit-transform: translate(-50%, -50%);
}
/* effect 1 style */
.exad-dual-button-primary.effect-1, .exad-dual-button-secondary.effect-1,
.exad-dual-button-primary.effect-2, .exad-dual-button-secondary.effect-2,
.exad-dual-button-primary.effect-3, .exad-dual-button-secondary.effect-3,
.exad-dual-button-primary.effect-4, .exad-dual-button-secondary.effect-4,
.exad-dual-button-primary.effect-6, .exad-dual-button-secondary.effect-6 {
    position: relative;
    transition: all .3s ease;
}

.exad-dual-button-primary.effect-1::before, .exad-dual-button-secondary.effect-1::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.exad-dual-button-primary.effect-1:hover, .exad-dual-button-secondary.effect-1:hover {
    z-index: 1;
}
  
.exad-dual-button-primary.effect-1:hover::before, .exad-dual-button-secondary.effect-1:hover::before {
    width: 100%;
    z-index: -1;
}

/* effect 2 style */
.exad-dual-button-primary.effect-2::before, .exad-dual-button-secondary.effect-2::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform-origin: center center;
            transform-origin: center center;
}

.exad-dual-button-primary.effect-2:hover, .exad-dual-button-secondary.effect-2:hover {
    z-index: 1;
}
  
.exad-dual-button-primary.effect-2:hover::before, .exad-dual-button-secondary.effect-2:hover::before {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    z-index: -1;
}

/* effect 3 style */

.exad-dual-button-primary.effect-3::before, .exad-dual-button-secondary.effect-3::before {
    position: absolute;
    content: '';
    height: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.exad-dual-button-primary.effect-3:hover, .exad-dual-button-secondary.effect-3:hover {
    z-index: 1;
}
  
.exad-dual-button-primary.effect-3:hover::before, .exad-dual-button-secondary.effect-3:hover::before {
    height: 100%;
    z-index: -1;
}

/* effect 4 style */
.exad-dual-button-primary.effect-4::before, .exad-dual-button-secondary.effect-4::before{
    position: absolute;
    content: '';
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.exad-dual-button-primary.effect-4:hover, .exad-dual-button-secondary.effect-4:hover {
    z-index: 1;
}

.exad-dual-button-primary.effect-4:hover::before, .exad-dual-button-secondary.effect-4:hover::before {
    top: 0;
    bottom: 0;
    opacity: 1;
    z-index: -1;
}

/* effect 5 style */
.exad-dual-button-primary.effect-5, .exad-dual-button-secondary.effect-5{
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* effect 6 style */

.exad-dual-button-primary.effect-6::before, .exad-dual-button-secondary.effect-6::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 0;
    top: 0;
    right: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.exad-dual-button-primary.effect-6:hover, .exad-dual-button-secondary.effect-6:hover {
    z-index: 1;
}
  
.exad-dual-button-primary.effect-6:hover::before, .exad-dual-button-secondary.effect-6:hover::before {
    width: 100%;
    z-index: -1;
}

/* Exad Dual Button Style end */