.card-container{
    &:has(.card-label){
        padding: 45px 22px 10px;
    }
    padding: 20px 22px 10px;
    .card-label{
        background: #07D2F5;
        margin-top: -60px;
    }
    .card-content{
        align-items: flex-start;
    }
    .card-logo{
        align-items: flex-start;
        flex: 0 1 140px;
        @media screen and (max-width:767px){
            flex: 1 1 auto;
        }
        &>img{
            max-width: 135px;
            object-fit: contain;
            margin-bottom: 5px !important;
        }
        .rating{
            margin: 0;
            margin-right: auto;
            @media screen and (max-width:767px){
                margin-inline: auto;
            }
        }
        .logo-text{
            display: flex;
            gap: 5px;
            margin-top: 63px;
            h4 {
                margin: 0;
                text-transform: uppercase;
                font-size: 15px;
                line-height: 22px;
                font-weight: 500;
            }
            p{
                display: none;
            }
            @media screen and (max-width:767px){
                margin-top: 10px;
            }
        }
    }
    .card-text{
        flex: 3 1 300px;
        max-width: 448px;
        p {
            font-size: 13px;
            line-height: 22px;
        }
    }
    
    .card-button{
        position: relative;
        text-decoration: none;
        color: #fff;
        background-color: #FF005B;
        padding: 11px 34px;
        font-size: 15px;
        display: block;
        max-width: 100%;
        width: fit-content;
        transition: 0.4s ease;
        &:hover {
            color: #fff;
            text-decoration: none;
            transform: scale(0.98);
        }
    }
    .card-text{
        border-left: 0;
        padding-left: 0;
        .awrd{
            padding-left: 0px;
            font-size: 19px;
            line-height: 28px;
            &::after{
                display: none;
            }
        }
        h3 {
            font-size: 18px;
            line-height: 26px;
        }
        .offer-content{
            ul{
                li::marker{
                    color: #FF005B;
                }
                li{
                    font-size: 13px;
                    line-height: 22px;
                }
            }
        }
    }
    .card-actions{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: -webkit-fill-available;
    }
    @media screen and (max-width:767px){
        .card-content{
            align-items: center;
            .awrd,h3{
                text-align: center;
            }
        }
        .card-button{
            margin-inline: auto;
        }
    }
}

.msg-container{
    align-items: center;
    &:has(.tip-icon-section){
        background-color: #e9f5e9;
        border: 1px solid #ABF4C6;
    }
    &:has(.warning-icon-section){
        background-color: #fcf8e3;
        border: 1px solid #F8EDA4;
    }
    .tip-content-section,.warning-content-section{
        border-left: 0;
        @media screen and (max-width:767px){
            padding: 20px;
        }
        h2{
            display: none;
        }
        .tip-text p,.warning-text p{
            max-width: 500px;
            width: 100%;
            font-size: 12px;
            line-height: 24px;
            margin: 0;
        }
    }
    .tip-icon-section,.warning-icon-section{
        width: auto;
        padding-right: 0;
        h2{
            margin: 0;
            font-size: 22px;
            line-height: 32px;
            font-weight: 500;
            color: #198F44;
            margin-top: 0;
            margin-bottom: 10px;
        }
        p{
            margin-bottom: 0px;
        }
        @media screen and (max-width:767px){
            padding: 20px 0px;
        }
    }
    .warning-icon-section H2 {
        color: #FFBA03;
    }
}

.pros-cons{
    padding: 0;
    gap: 0;

    .content {
        h3{
            text-align: center;
            margin-bottom: 0;
            font-size: 18px;
            line-height: 26px;
            font-weight: 500;
            background-color: #FFEFEF;
            border: 1px solid #FFD5D5;
            color: #E84A4A;
            padding: 5px 0px;
        }
        &:first-of-type{
            border-right: 1px solid #E8E8E8;
            h3{
                background-color: #DFFFEB;
                border: 1px solid #ABF4C6;
                color: #198F44;
            }
        }
        ul {
           padding: 15px 17px; 
           li{
            font-size: 13px;
           }
        }
    }
}

.solutions-grid{
    table {
        th,td {
            border: none;
        }
        th{
            background: #E3FAFF;
            font-size: 15px;
            line-height: 30px;
            font-weight: 500;
            color: #212121;
            text-align: left;
            border-top: 1px solid #D1F2F8;
            border-bottom: 1px solid #D1F2F8;
            padding-left: 0px;
        }
        tr{
            td{
                background-color: #F3FDFF;
                border-bottom: 1px solid #D1F2F8;
                padding: 17px 10px;
                .flex{
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 10px;
                    flex-wrap: wrap;
                }
                &:nth-of-type(3){
                    p{
                        max-width: 170px;
                    }
                }
                h2{
                    padding: 0px 15px;
                    font-size: 22px;
                    line-height: 32px;
                    font-weight: 500;
                }
                p{
                    font-size: 13px;
                    line-height: 22px;
                    color: #606060;
                    flex: 1 1 110px;
                    margin-bottom: 0px;
                }
                a{
                    text-decoration: none;
                    background-color: #07D2F5;
                    color: #fff;
                    padding: 11px 18px;
                    font-size: 15px;
                    margin-right: 15px;
                }
            }
            &:nth-of-type(odd){
                td{
                    background-color: #D1F2F8;
                    border-bottom: 1px solid #D1F2F8;
                }
            }
        }
        @media screen and (max-width:992px) {
            tr{
                td{
                    a{
                        display: none;
                    }
                    &:first-of-type{
                        display: none;
                    }
                    img{
                        max-width: 80px;
                    }
                }
                th:first-of-type{
                    display: none;
                }
                th,td{
                    padding: 5px;
                }
                th{
                    text-align: center;
                }
            }
        }
        @media screen and (max-width:768px){
            tr{
                th{
                    font-size: 10px;
                    line-height: 16px;
                }
                td{
                    img{
                        width: 60px;
                    }
                    p{
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
.download-widget{
    position: relative;
    width: 100%;
	max-width:723px;
	margin-bottom:40px;
	margin-inline:auto;
    padding: 15px 0px 14px 12px;
    border: 1px solid #E0E5E8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:30px;
    flex-wrap: wrap;
    @media screen and (max-width:768px){
        gap: 10px;
    }
    .img-cont{
      position: relative;
      display: grid;
      place-items: center;
      padding: 26px 21px 26px 0px;
      border-right: 1px solid #E2E2E2;
      img{
        position: relative;
        display: block;
        width: 100%;
        max-width: 123px;
        @media screen and (max-width:768px){
            max-width: 200px;
        }
      }
    }
    .text-cont{
      max-width: 346px;
      h2{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 5px;
      }
      p{
        font-size: 12px;
        line-height: 20px;
      }
    }
    .btn-cont{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
        a.btn{
            margin-left: auto;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          max-width: 164px;
          padding: 15px 20px;
          border-radius: 5px;
          background-color: #FF005B;
          color: #fff;
          font-weight: 600;
          text-decoration: none;
          font-size: 14px;
          line-height: 20px;
          transition: 0.4s ease;
          text-align: center;
          &:hover{
            transform: scale(0.98);
          }
          @media screen and (max-width:768px){
            max-width: 100%;
            width: 250px;
            font-size: 14px;
          }
        }
    }
    @media screen and (max-width:768px) {
      justify-content: center;
      .img-cont{
        border-right: 0px;
        border-bottom: 1px solid #E0E5E8;
        padding-right: 0px;
        padding: 0px 30px 24px;
      }
      .btn-cont{
        flex-direction: column-reverse;
      }
    }
}
.both .download-widget{
	margin-bottom:00px;
}

.download-widget.vertical {
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 0;
}
.download-widget.vertical .img-cont {
	padding: 0;
	border: 0;
}
.download-widget.vertical .img-cont img {
	max-width: 75%;
}
.download-widget.vertical .text-cont {
	text-align: left;
	max-width: 310px;
}
.download-widget.vertical .text-cont h2 {
	margin-top: 0;
}


.effortless-widget{
    position: relative;
    max-width: 723px;
    width: 100%;
    margin: 10px auto 20px !important;
    border: 1px solid #E2E2E2 !important;
    background-color: #F9F9F9 !important;
    padding: 7px 40px 0px !important;
    @media screen and (width<=600px){
        padding: 7px 10px 0px !important;
    }
    p{
        margin: 0 !important;
    }
    .flex{
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        .content{
            flex : 1 1 300px !important;
            h2 {
                font-family: 'Oswald', sans-serif;
                font-size: 31px !important;
                line-height: 38px !important;
                font-weight: 600 !important;
                margin-bottom: 35px !important;
                margin-top: 0px !important;
            }
            a.btn {
                position: relative !important;
                display: block !important;
                text-decoration: none !important;
                color: #fff !important;
                background-color: #FF005B !important;
                padding: 11px 33px !important;
                width: 100% !important;
                max-width: fit-content !important;
                font-size: 20px !important;
                line-height: 23px !important;
                font-weight: 600 !important;
                transition: 0.4s ease !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                height: fit-content !important;
                &:hover{
                    transform: scale(0.98) !important;
                }
                br{
                    display: none !important;
                }
            }
            @media screen and (width<=600px) {
                padding: 20px 20px 0px !important;
                h2{
                    font-size: 24px !important;
                    line-height: 30px !important;
                    margin-bottom: 15px !important;
                    text-align: center !important;
                }
                a.btn {
                    font-size: 16px !important;
                    line-height: 18px !important;
                    margin-inline: auto !important;
                }
            }
        }
        img{
            position: relative !important;
            display: block !important;
            object-fit: contain !important;
            max-width: 100% !important;
            flex: 1 1 150px !important;
            max-width: 196px !important;
        }
    }
}

.effortless-widget.text-only{
    padding: 34px 40px !important;
    @media screen and (width<=600px){
        padding: 20px !important;
    }
    .flex{
        .content{
            h2{
                margin-bottom: 10px !important;
            }
            a {
    line-height: 23px !important;
    color: #1a0dab !important;
    text-decoration: underline !important;
   
}

a:hover {
    text-decoration: underline !important;
}
			
            @media screen and (width<=600px) {
                padding: 0px !important;
                a {
                    font-size: 16px !important;
                    line-height: 18px !important;
                    margin-inline: auto !important;
                    text-align: center !important;
                    }
            }
        }
    }
}


/* offer table styles */

.offer-table{
  position: relative;
  margin: 20px auto !important;
  max-width: 723px !important;
  width: 100% !important;
  h2{
    font-size: 31px !important;
    line-height: 38px !important;
    font-weight: 600 !important;
    margin-bottom: 11px !important;
    @media screen and (width<=786px) {
      font-size: 20px !important;
      line-height: 26px !important;
      text-align: center !important;
    }
  }
  p{
    font-size: 18px !important;
    line-height: 30px !important;
    margin-bottom: 24px !important;
    @media screen and (width<=786px) {
      font-size: 14px !important;
      line-height: 16px !important;
    }
  }
  table{
    position: relative !important;
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #E2E2E2 !important;
    tr,th,td{
      border: none !important;
    }
    th{
      background-color: #000000 !important;
      color: #fff !important;
      padding: 26px 0px !important;
      font-size: 14px !important;
      line-height: normal !important;
      text-align: center !important;
      font-weight: 500 !important;
      @media screen and (width<= 723px) {
        padding: 15px 5px !important;
        font-size: 14px !important;
      }
    }
    td{
      text-align: center !important;
      padding: 14px 5px !important;
      font-size: 14px !important;
      line-height: normal !important;
      place-content: center !important;
      @media screen and (width<= 723px){
        padding: 10px 5px !important;
        font-size: 12px !important;
      }
      h2{
        font-size: 14px !important;
        line-height: normal !important;
        font-weight: 600 !important;
        @media screen and (width<= 723px){
          font-size: 14px !important;
        }
      }
      a{
        position: relative !important;
        display: flex !important;
        margin-inline: auto !important;
        padding: 12px 20px !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: #fff !important;
        background-color: #FF005B !important;
        width: 100% !important;
        max-width: 164px !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: normal !important;
        border-radius: 4px !important;
        @media screen and (width<= 723px){
          padding: 5px !important;
          font-size: 12px !important;
          border-radius: 2px !important;
        }
      }
    }
    tr:has(td){
      border-bottom: 1px solid #E2E2E2 !important;
    }
    tr:nth-of-type(odd){
      background-color: #F9F9F9 !important;
    }
  }
}

/* end of offer table styles */

.want-to-see{
  max-width: 723px;
  width: 100%;
  position: relative;
  margin: 20px auto !important;
  border: 5px solid #FF005B !important;
  padding: 20px 55px !important;

  h2, p {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  p,br{
    display: none !important;
  }

  h2{
    font-size: 20px !important;
    line-height: 33px !important;
    font-weight: 600 !important;

    span{
      display: block !important;
      a{
        text-decoration: underline !important;
		  color: #1A0DAB !important;
		  font-weight:normal !important;
      }
  }
}

  @media screen and (width<=786px) {
    padding: 15px 20px !important;
    h2 {
      font-size: 16px !important;
      line-height: 24px !important;
    }
  }
}
.pros-grid{
  max-width: 723px;
  width: 100%;
  position: relative;
  margin: 20px auto !important;
  h2,p {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  p,br{
    display: none !important;
  }
  table{
    border-collapse: collapse !important;
    border: 1px solid #E2E2E2 !important;
    th{
      padding: 18px 30px !important;
      background-color: #000000 !important;
      &:last-of-type{
        background-color: #FF005B !important;
      }
      div{
        display: flex !important;
        align-items: center !important;
        gap: 19px !important;
        h2{
          font-size: 31px !important;
          line-height: 38px !important;
          font-weight: 600 !important;
          color: #fff !important;
        }
      }
    }
    td{
      max-width: 361.5px !important;
      padding: 18px 30px !important;
      font-size: 14px !important;
      line-height: 27px !important;
      border: 1px solid #E2E2E2 !important;
    }
  }
  @media screen and (width<=786px){
    table{
      th{
        padding: 10px 15px !important;
        div{
          gap: 10px !important;
          h2{
            font-size: 16px !important;
            line-height: 24px !important;
          }
          svg{
            aspect-ratio: 1/1 !important;
            width: 25px !important;
          }
        }
      }
      td{
        padding: 10px !important;
        font-size: 12px !important;
        line-height: 18px !important;
      }
    }
  } 
}

.download-table{
  position: relative;
  margin: 20px auto !important;
  max-width: 723px !important;
  width: 100% !important;
  p,br{
    display: none !important;
  }
  table{
    position: relative !important;
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #E2E2E2 !important;
    tr,th,td{
      border: none !important;
    }
    th{
      background-color: #000000 !important;
      color: #fff !important;
      padding: 26px 0px !important;
      font-size: 14px !important;
      line-height: normal !important;
      text-align: center !important;
      font-weight: 500 !important;
      @media screen and (width<= 723px) {
        padding: 15px 5px !important;
        font-size: 11px !important;
      }
    }
    tr{
      td:nth-of-type(2){
        max-width: 120px;
      }
    }
    td{
      text-align: center !important;
      padding: 14px 5px !important;
      font-size: 14px !important;
      line-height: normal !important;
      place-content: center !important;
      @media screen and (width<= 723px){
        padding: 10px 5px !important;
        font-size: 12px !important;
      }
      h2{
        font-size: 14px !important;
        line-height: normal !important;
        font-weight: 600 !important;
        margin: 0px !important;
        @media screen and (width<= 723px){
          font-size: 13px !important;
        }
      }
      a{
        position: relative !important;
        display: flex !important;
        padding: 12px 20px !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: #fff !important;
        background-color: #FF005B !important;
        width: 100% !important;
        max-width: 110px !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: normal !important;
        border-radius: 4px !important;
        @media screen and (width<= 723px){
          padding: 10px !important;
          font-size: 12px !important;
          border-radius: 2px !important;
        }
        &.black{
          background-color: #000000 !important;
        }
      }
      div{
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        justify-content: flex-start !important;
        span{
          width: 100% !important;
          text-align: center !important;
        }
      }
    }
    tr:has(td){
      border-bottom: 1px solid #E2E2E2 !important;
    }
    tr:nth-of-type(odd){
      background-color: #F9F9F9 !important;
    }
  }
}



.compare-widgets{
  position: relative;
  margin: 20px auto !important;
  max-width: 723px !important;
  width: 100% !important;
  p,br{
    display: none !important;
  }
  p:has(span),p:has(a){
    display: block !important;
    margin: 0px auto !important;
  }
  display: grid !important;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr)) !important;
  gap: 10px !important;
  .off-card{
    border: 1px solid #E2E2E2 !important;
    .heading{
      width: 100% !important;
      background-color: #000000 !important;
      padding: 16px 10px !important;
      h5{
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #fff !important;
        text-align: center !important;
        margin-bottom: 0px !important;
      }
    }
    .card-body{
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      padding: 14px 14px 20px !important;
      img.logo{
        position: relative !important;
        display: block !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin-bottom: 12px !important;
        height: 30px !important;
        margin-inline: auto !important;
      }
      span.line{
        position: relative !important;
        display: block !important;
        max-width: 75px !important;
        width: 100% !important;
        height: 1px !important;
        background-color: #E2E2E2 !important;
        margin-bottom: 8px !important;
      }
      h3{
        font-size: 12px !important;
        line-height: 16px !important;
        text-align: center !important;
        margin: 0px auto !important;
      }
      span{
        color: #FFCE4C !important;
        &.light{
          color: #E5E5E5 !important;
        }
      }
      h6{
        font-size: 12px !important;
        margin: 0px auto !important;
        margin-bottom: 15px !important;
        font-weight: 400 !important;
      }
      ul {
        margin-top: 0px !important;
        padding: 0px !important;
        margin-bottom: 12px !important;
        li{
          list-style: none !important;
          font-size: 12px !important;
          line-height: 16px !important;
          margin-bottom: 2px !important;
          span{
            margin-right: 5px !important;
            color: #FF005B !important;
          }
        }
      }
      h2{
        font-size: 19px !important;
        color: #FF005B !important;
        font-weight: 900 !important;
        margin: 0px auto !important;
        margin-bottom: 4px !important;
      }
      h4{
        font-size: 11px !important;
        font-weight: 500 !important;
        margin: 0px auto !important;
        margin-bottom: 5px !important;
      }
      a.btn{
        display: flex !important;
        position: relative !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        background-color: #FF005B !important;
        color: #fff !important;
        padding: 5px 20px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        border-radius: 5px !important;
        transition: 0.4s ease !important;
        &:hover{
          transform: scale(0.98) !important;
        }
      }
    }
  }
}

/* ask nicely widget */
.ask-nicely-widget{
  position: relative;
  margin: 20px auto !important;
  max-width: 723px !important;
  width: 100% !important;
  background-color: #F9F9F9 !important;
  border: 1px solid #E2E2E2;
  p,br{
    display: none !important;
  }
  p:has(span),p:has(a), p:has(img){
	display: block !important;
	margin: 0px auto !important;
  }
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  @media screen and (width <= 650px) {
    padding: 30px 0px 0px !important;
    gap: 20px !important;
	flex-direction:column-reverse !important;
  }
  .left-sec{
    flex: 4 1 240px !important;
    padding: 30px 0px 30px 30px !important;
    @media screen and (width <= 580px){
      padding: 0px 20px !important;
      display: grid !important;
      place-items: center !important;
    }
    img.logo{
      position: relative !important;
      display: block !important;
      max-width: 100% !important;
      margin-bottom: 15px !important;
    }
    h1{
      font-size: 31px !important;
      line-height: 38px !important;
      width: 100% !important;
      max-width: 330px !important;
      margin: 0px !important;
      margin-bottom: 20px !important;
      @media screen and (width <= 650px){
        text-align: center !important;
        max-width: 100% !important;
        font-size: 24px !important;
        line-height: 30px !important;
        margin-bottom: 10px !important;
      }
    }
    a.btn {
      position: relative !important;
      display: block !important;
      text-decoration: none !important;
      color: #fff !important;
      background-color: #FF005B !important;
      transition: 0.4s ease !important;
      padding: 9px 17px !important;
      max-width: 208px !important;
      display: grid !important;
      place-items: center !important;
      width: 100% !important;
      font-size: 17px !important;
      line-height: 23px !important;
      font-weight: 500 !important;
      &:hover{
        transform: scale(0.98) !important;
      }
    }
  }
  img.right{
    position: relative !important;
    display: block !important;
    width: 100% !important;
    object-fit: contain !important;
    flex: 1 2 200px !important;
    max-width: 350px !important;
	  @media screen and (width <= 650px){
		  margin-right:auto !important;
		  max-width: 90% !important;
	  }
  }
}
/* end of ask nicely widget */

/* submit mobile widget */
.submit-mobile-widget{
  position: relative;
  margin: 20px auto !important;
  max-width: 723px !important;
  width: 100% !important;
  background-color: #F9F9F9 !important;
  border: 1px solid #E2E2E2 !important;
  padding: 27px 20px 40px !important;
  @media screen and (width <= 768px){
    padding: 23px 18px !important;
  }
  p,br{
    display: none !important;
  }
  p:has(span),p:has(a), p:has(img),p:has(button){
    display: block !important;
    margin: 0px auto !important;
  }
  h2{
    font-size: 31px !important;
    line-height: 38px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    max-width: 582px !important;
    margin-inline: auto !important;
    span{
      display: inline !important;
      color: #FF005B !important;
    }
  }
  h5{
    position: relative !important;
    text-align: center !important;
    font-size: 14px !important;
    line-height: 27px !important;
    text-align: center !important;
    max-width: 582px !important;
    margin: 0px auto 15px !important;
    font-weight: 400 !important;
    span{
      color: #FF005B !important;
      display: inline !important;
    }
  }
  p.text{
    display: block !important;
    text-align: center !important;
    max-width: 533px !important;
    margin: 0px auto 26px !important;
    font-size: 10px !important;
    line-height: 16px !important;
    a{
      text-decoration: underline !important;
      color: #000000 !important;
    }
  }
  form{
    position: relative !important;
    width: 100% !important;
    display: grid !important;
	  margin-bottom: -12px !important;
    place-items: center !important;
	  .wpcf7-form-control-wrap{
		  margin-bottom:34px !important;
		  @media screen and (width <= 768px){
			  margin-bottom: 20px !important;
		  }
	  }
    input{
      position: relative !important;
      width: 100% !important;
      max-width: 342px !important;
      border: 1px solid #E2E2E2 !important;
      outline: 0 !important;
		
      &:focus{
        outline: 0 !important;
      }
      padding: 8px 20px !important;
      text-align: center !important;
      font-size: 20px !important;
      background-color: #FFF !important;
      &::placeholder{
        color: #9B9B9B !important;
      }
    }
    button,
	 .wpcf7-submit {
      position: relative !important;
      display: flex !important;
      background-color: #FF005B !important;
      color: #FFF !important;
      padding: 9px 20px !important;
      font-size: 17px !important;
      font-weight: 500 !important;
      outline: 0 !important;
      border: 0 !important;
      &:focus{
        outline: 0 !important;
      }
      transition: 0.4s ease !important;
      &:hover{
        transform: scale(0.98) !important;
      }
      width: 100% !important;
      max-width: 208px !important;
      align-items: center !important;
      justify-content: center !important;
    }
 	.wpcf7-spinner{
		  position: relative !important;
		  display: block !important;
		  margin: 4px 0 auto !important;
		  transform: translateX(0) !important;
	}
	  .wpcf7-response-output{
		  margin-bottom:12px ;
	}
  }
}
/* end of submit mobile widget */