@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
html {
    height: 100%;
}

:root {
    --black: #333333;
    --white: #ffffff;
    --green: #6DBB7F;
    --yellow: #FECD4E;
    --black-low: #444444;
    --pink: #E63981;
    --purple: #B14EFE;
    --placeholder: #BABABA;
    --bg-light: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.hidden
{
    display:none !important ;
}
body {
    background-color: #F6F6F6;
    /* color: var(--black); */
    height: 100%;
}

#page-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

  /* #main-content {
    padding-bottom: 85px;  
  } */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999999;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.linePreloader {
    width: 300px;
    height: 3px;
    background: linear-gradient(to right,#4AEE70,#6DBB7F);
    background-color: #f1f1f1;
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: inset 0px 0px 1px #e2e2e2;
    background-size: 20%;
    background-repeat: repeat-y;
    background-position: -25% 0;
    animation: scroll 1.2s ease-in-out infinite;
}
  
  @keyframes scroll{
    50%{background-size:80%}
    100%{background-position:125% 0;}
  }
/* <------------Buttons------------> */

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    border: 1px solid transparent;
    padding: 8px 30px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 12px;
    box-shadow: none !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-square {
    padding: 8px 8px;
}

.btn-success {
    color: #fff;
    background-color: var(--green);
    border-color: var(--green);
}

.btn-warning {
    color: #fff;
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.btn-warning:hover {
    color: #fff;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #fff !important;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-info {
    color: #fff;
    background-color: var(--purple);
    border-color: var(--purple);
}

.btn-info:hover {
    color: #fff;
    background-color: #8b2fd2;
    border-color: #8b2fd2;
}

.btn-race {
    color: #fff;
    background-color: var(--pink);
    border-color: var(--pink);
}

.btn-race:hover,
.btn-race:focus,
.btn-race:active {
    color: #fff;
    background-color: #c92a6c;
    border-color: #c92a6c;
}

.btn-info.focus,
.btn-info:focus {
    color: #fff;
    background-color: #8b2fd2;
    border-color: #8b2fd2;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #8b2fd2;
    border-color: #8b2fd2;
}

.btn-outline-race {
    color: var(--pink);
    border-color: var(--pink);
}

.btn-outline-race:hover {
    color: #fff;
    background-color: var(--pink);
    border-color: var(--pink);
}

.btn-outline-info {
    color: var(--purple);
    border-color: var(--purple);
}

.btn-outline-info:hover {
    color: #fff;
    background-color: var(--purple);
    border-color: var(--purple);
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #8b2fd2;
    border-color: #8b2fd2;
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}


/* <------------Header------------> */

.nav-custom {
    background-color: #fff;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.08);
    padding: 20px 1rem;
    margin-bottom: 40px;
}

.nav-custom .nav-item .nav-link {
    color: var(--black);
    padding: 0.5rem 15px;
}

.nav-custom .nav-item.active .nav-link {
    color: var(--green);
}

.nav-custom .nav-item.active svg path {
    fill: var(--green);
}

.race-bird-icon {
    stroke: #333333;
    stroke-width: .5;
}

.nav-custom .nav-item.active .race-bird-icon {
    stroke: var(--green);
}

#profile-button {
    background-color: var(--green);
    color: #fff;
    font-size: 16px;
    padding: 0 0 0px 20px;
    border-radius: 24px 48px 48px 24px;
    border: none;
}
.profile-box > input[type="file"] {
    display: none;
}
.row-flex {
    display: flex;
    flex-wrap: wrap;
  }
  
.file-upload {
    display: inline-block;
    padding: 6px 12px;
    color: #B14EFE;
    font-size:18px;
    background:#b24efe42;
    cursor: pointer;
}
.profile-pic
{
    width: 120px;
    border-radius: 50%;
    height:120px;
    border: 4px solid #fff;
    box-shadow: 0px 0px 50px rgb(0 0 0 / 18%);
  
}
.dropdown.nav-profile img {
    width: 50px;
    height:50px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0px 0px 50px rgb(0 0 0 / 18%);
    margin-left: 10px;
}

.dropdown.nav-profile #profile-button:focus {
    outline: none;
    box-shadow: none;
}


/* <------------footer------------> */

.footer-custom .nav-item .nav-link {
    color: var(--white);
    padding: 0.5rem 15px;
}

.footer-custom {
    margin-top: 50px;
    background-color: var(--green);
    padding: 20px 1rem;
    /* position: absolute;
    width: 100%;
    bottom: 0; */
}


/* <------------Page-header------------> */

.page-header {
    display: flex;
    flex: 1;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 15px;
    padding: 18px 20px;
    align-items: center;
}

.ph-left h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 36px;
    color: var(--black-low);
}


/* <------------bird-card------------> */

.bird-gender .bg-title {
    text-align: center;
    position: relative;
    font-size: 12px;
    color: var(--black-low);
}

.bird-gender .bg-title:after,
.bird-gender .bg-title:before {
    content: "";
    width: calc(50% - 40px);
    height: 1px;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
}

.bird-gender .bg-title:after {
    background: linear-gradient(270deg, #E4E4E4 50%, rgba(228, 228, 228, 0) 100%);
    left: 0;
}

.bird-gender .bg-title:before {
    right: 0;
    background: linear-gradient(90deg, #E4E4E4 50%, rgba(228, 228, 228, 0) 100%);
}

.bird-gender .bg-title.bg-title-space:after,
.bird-gender .bg-title:before {
    width: calc(50% - 90px);
}

.bird-gender {
    padding: 25px 0px;
}

.card-tags-wrapper {
    position: absolute;
    width: 100%;
    padding: 10px;
}

.card-tag {
    font-size: 14px;
    color: #fff;
    background: transparent;
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 5px;
}

.bird-card .card-thumbnail {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background-color: var(--white);
}

.card-thumbnail img {
    min-height: 230px;
    max-height: 230px;
    object-fit: contain;
    width: 100%;
}

.card-thumbnail.pair-card-thumbnail {
    padding: 15px 15px 5px 15px;
    background: #fff;
    display: flex;
    justify-content: space-between;
}

.card-thumbnail.pair-card-thumbnail img {
    border-radius: 10px;
}

.card-thumbnail.pair-card-thumbnail.paired-card img {
    width: calc( 50% - 7px);
}

.card-tag.tag-paired {
    background: var(--purple);
}

.card-tag.tag-juvenile {
    background: var(--yellow);
}

.card-tag.tag-racing {
    background: var(--pink);
}

.card-detail {
    padding: 15px;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
}

.bird-name {
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
}


/* Tooltip text */
.bird-name .tooltiptext {
  visibility: hidden;
  margin-left:10px;
  font-size:12px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}
.bird-name .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%; /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}
/* Show the tooltip text when you mouse over the tooltip container */
.bird-name:hover .tooltiptext {
  visibility: visible;
}
.bird-identity {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--bg-light);
}

.bird-gender-tag {
    background-color: var(--bg-light);
    font-size: 14px;
    line-height: 23px;
    padding: 2px 10px;
    border-radius: 5px;
    color: var(--black-low);
}

.bird-info-wrap .bi-label {
    font-size: 11px;
    display: block;
    color: var(--placeholder);
}

.bird-info-wrap .bi-info {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--black-low);
}

.bird-info-wrap .bi-info.bi-status::before {
    content: "";
    height: 8px;
    width: 8px;
    display: inline-flex;
    margin-right: 1px;
}

.bird-info-wrap .bi-info.bi-status.status-breed::before {
    background: var(--green);
    border-radius: 50%;
}

.bird-info-wrap .bi-info.bi-status.status-juvenile::before {
    background: var(--yellow);
}

.bird-info-wrap .bi-info.bi-status.status-racing::before {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 10px solid var(--pink);
    border-bottom: 6px solid transparent;
    transform: translate(0px, -4px);
}

.bird-card-footer {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
}
.btn-square-edit_white
{
    background: white;
}
.btn-square.btn-square-edit-white:hover {
    background: var(--yellow);
    color: #fff;
    transition: .3s;
}
.btn-square.btn-square-edit-white:hover svg path {
    stroke: var(--white);
    transition: .3s;
  }
  .btn-square.btn-square-delete-white {
    background: white;
    transition: .3s;
}
.btn-square.btn-square-delete-white:hover {
    background: #C60000;
    transition: .3s;
}
.btn-square.btn-square-delete-white:hover svg path {
    fill: var(--white);
    transition: .3s;
  }
.btn-square.btn-square-edit {
    background: #FFF7E4;
    transition: .3s;
}

.btn-square.btn-square-edit:hover {
    background: var(--yellow);
    transition: .3s;
}

.btn-square.btn-square-edit:hover svg path {
    stroke: var(--white);
    transition: .3s;
}


.btn-square.btn-square-delete {
    background: #FFF2F2;
    transition: .3s;
}

.btn-square.btn-square-delete:hover {
    background: #C60000;
    transition: .3s;
}

.btn-square.btn-square-delete:hover svg path {
    fill: var(--white);
    transition: .3s;
}

.btn-pedigree {
    background: #DFF0E3;
    border-color: #DFF0E3;
    color: var(--green);
    transition: .3s all;
}

.btn-pedigree:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.btn-juvenile {
    background: #FEF4D9;
    border-color: #FEF4D9;
    color: var(--yellow);
    transition: .3s all;
}

.btn-juvenile:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
    transition: .3s all;
}


/*01-02-2022 Race-page-start*/

.bird-card.bird-race {
    background: #fff;
    border-radius: 10px;
}

.bird-card.bird-race img.img-fluid {
    padding: 10px;
}

.race-add-btn {
    background: #E63981;
    border-color: #E63981;
}

button.btn.btn-warning.race-add-btn:hover {
    background: #E63981;
}

button.detail-btn {
    color: #444444;
    border: 1px solid #f6f6f6;
    border-radius: 20px;
    padding: 8px 50px;
    background: #fff;
}

button.detail-btn.enter-birds {
    background: #E63981;
    color: #fff;
}

button.result-btn.detail-btn.enter-birds {
    padding: 8px 30px;
}

button.birds-result.result-btn.detail-btn.enter-birds {
    background: #6DBB7F;
}

button.btn.btn-warning.create-race-btn {
    background: #E63981;
}

button.btn.btn-secondary.cancel-btn {
    background: #DADADA;
    color: #000;
    border: 1px solid #dadada;
}


/* tr.race-table-row {
    background: #fff;
} */

th.race-table-label {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #BABABA;
    border: none !important;
}

td .stock-bird-image {
    width: 65px;
    height: 65px;
    display: inline-flex;
    min-width: 65px;
    min-height: 65px;
}

td .stock-bird-image img {
    object-fit: cover;
}

td .stock-bird-image {
    width: 65px;
    height: 65px;
    display: inline-flex;
    min-width: 65px;
    min-height: 65px;
    border-radius: 12px;
    overflow: hidden;
}

.table td,
.table th {
    vertical-align: middle;
}

.b-table-info {
    font-weight: 500;
    font-size: 18px;
    color: #444;
    flex: 1 1 auto;
}

.winner-table tbody tr td {
    background: #fff;
}

.winner-table tbody tr td:first-child,
.winner-table tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.winner-table tbody tr td:last-child,
.winner-table tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.winner-table {
    border-collapse: separate;
    border-spacing: 0 15px;
    margin-bottom: 0px;
}

.race-card .card-thumbnail {
    padding: 15px 15px 5px 15px;
    background: #fff;
    display: flex;
    justify-content: space-between;
}

.race-card .card-thumbnail img {
    border-radius: 10px;
}

.race-card .bird-card-footer .btn:first-child {
    margin-right: 5px;
}

.race-card .bird-card-footer .btn:last-child {
    margin-left: 5px;
}


/*01-02-2022 Race-page-end*/


/* <--------Modal------> */

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 20px;
    outline: 0;
}

.modal-close-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 30px;
    width: 30px;
    background: transparent;
    border-radius: 6px;
    transition: .4s ease;
}

.modal-close-button:hover {
    background: var(--bg-light);
}

.modal-header-tagline button.close {
    margin-top: -5px;
}


/* <--------Form-input------> */

.form-control {
    display: block;
    box-shadow: none !important;
    width: 100%;
    padding: 8px 1rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    height: 45px;
    color: var(--black);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e4e6ef;
   
    border-radius: 0.475rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.gender-radio {
    height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 34px !important;
    border: 1px solid #e4e6ef;
    border-radius: 0.475rem;
}

.max-width-250 {
    max-width: 250px;
    display: inline-flex;
}

.form-check-input {
    margin-top: 0;
}
.form-check-input.bootstrap-default {
    margin-top: .3rem;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--green);
    background-color: var(--green);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgb(109 187 127 / 26%);
}

.gender-radio .custom-control-label {
    width: 100%;
    padding: 10px 0px;
}

.custom-control-label::after,
.custom-control-label::before {
    top: 50% !important;
    transform: translate(0, -50%);
}

.form-group label {
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: 500;
    color: var(--black-low);
}

.form-control::-webkit-input-placeholder {
    /* Edge */
    color: #B8B8B8;
    font-weight: 300;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #B8B8B8;
    font-weight: 300;
}

.form-control::placeholder {
    color: #B8B8B8;
    font-weight: 300;
}

.form-control::-webkit-file-upload-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    height: 45px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    border: 1px solid transparent;
    background-color: var(--green);
    padding: 8px 25px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0 0.475rem 0.475rem 0;
    position: absolute;
    right: 0;
    bottom: 0
}

.form-group.form-select:before {
    border-top: 5px solid transparent;
    border-left: 5px solid #000;
    border-bottom: 5px solid transparent;
    position: absolute;
    content: "";
    right: 25px;
    bottom: 17px;
    z-index: 1;
    transform: rotate( 90deg);
}

.stock-bird-wrap .stock-bird-image {
    width: 80px;
    height: 80px;
    min-height: 80px;
    min-width: 80px;
    display: inline-flex;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 15px;
    overflow: hidden;
}

.stock-bird-wrap {
    display: flex;
    align-items: center;
}

.stock-bird-detail .bi-label {
    font-size: 11px;
    display: block;
    color: var(--placeholder);
}

.stock-bird-detail .bi-info {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--black-low);
}

.stock-bird-detail h6 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 20px;
}

.stock-bird-action {
    flex: 1;
    flex-grow: 1;
    text-align: right;
}

.stock-bird-action .custom-control.custom-checkbox {
    margin-top: 24px;
}

.stock-bird-wrap {
    padding: 8px;
    box-shadow: 0px 0px 120px rgb(0 0 0 / 10%);
    border-radius: 20px;
}

.remove-bird-check .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #BC3A3A;
    background-color: #BC3A3A;
}

.stock-bird-detail {
    flex: 1 1 auto;
}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
RESPONSIVE

////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESPONSIVE

//////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media(max-width: 767px) {
    .bird-card-footer.bird-race {
        display: block;
    }
    button.birds-result.result-btn.detail-btn.enter-birds {
        margin-top: 16px;
        width: 100%;
    }
    .page-header {
        flex-wrap: wrap;
    }
    .max-width-250{
        min-width: 150px;
    }
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 780px;
    }
    
}

@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (max-width: 991.98px) {
    #profile-button {
        background-color: transparent;
        color: #fff;
        width: 50px;
        height: 50px;
        font-size: 16px;
        padding: 0;
        border: none;
        position: relative;
    }
    #profile-button img {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }
    .dropdown-menu {
        left: unset;
        right: 0;
    }
    .nav-profile {
        position: absolute;
        right: 90px;
        top: 16px;
    }
    .nav-custom .navbar-nav {
        padding-top: 22px;
    }
}

@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1230px;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1410px;
    }
}








/* /////////////////////////-------New----Style-------------//////////////////////// */

.login-container{
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(107.5deg, #6DBB7F -31%, #F9C93A 134.16%);
}

.login-area {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}
.login-area h2 {
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    color: #333;
}
.text-green {
    color: var(--green) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}
.text-placeholder {
    color: var(--placeholder) !important;
}
a{
    text-decoration: none !important;
}

.td-box-title {
    font-size: 16px;
}
.td-box {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    height: 100%;
    border-radius: 10px;
}
.td-box textarea {
    height: 100% !important;
    
}
.theme-text > h2
{
	font-size:32px;
	display:inline;
	font-weight:bold;
	 
}
.theme-text > h2
{
	font-size:32px;
	display:inline;
	font-weight:bold;
	 
}
.plan-box
{
	background:#ffffff;
	border-radius:30px;
	padding:30px;
	  box-shadow: 0 20px 30px rgba(34,34,34,.07);
}
.plan-btn
{
    background-color: var(--green);
color: #fff;
padding:20px 30px;

font-size: .875em;
border-radius:50px;
box-shadow: 0 20px 30px rgba(33,33,33,.07);
}
.plan-btn-2
{
    background-color:var(--yellow);
color: #fff;
padding:20px 30px;

font-size: .875em;
border-radius:50px;
box-shadow: 0 20px 30px rgba(33,33,33,.07);
}
.mrg-top
{margin-top:-13px;}
.price-tag
{
font-size: 3.75em;
line-height:1;
font-family: "Raleway",Arial,Helvetica,sans-serif;
}
.price-tag > span
{
	font-weight:bold;font-size:42px;
}
.plan-list >li
{
	font-size:16px;
	list-style:none;
margin:10px;
}
.plan-list >li:before
{
   
	content:"\2713";
	margin-right:10px;
	font-size:18px;
	color:#ffc83e;
 
	font-weight:bold;
	border-radius:20px;
	padding:0px 5px;
}

.title
{
	color: #ffc83e;
	background: 0 0 !important;
font-size: 1.875em;
font-weight: 800;
letter-spacing: -.03em;
line-height: 1;
padding: 0;
font-family: "Raleway",Arial,Helvetica,sans-serif;
margin: 1rem 0 0;
}
.plan-box-2
{
	background:var(--green);
	color:#fff;
	border-radius:30px;
	padding:30px;
	  box-shadow: 0 20px 30px rgba(34,34,34,.07);
}
.plan-btn:hover
{
      background-color: #69b97c;
  color: #fff;
  box-shadow: 0 7.5px 15px rgba(33,33,33,.2);
transform: translateY(-3px);
}
.line{height:1px;width:100%; margin-top:20px;margin-bottom:20px; background:rgba(34,34,34,.07);}
.plan-btn:hover a.bt_bb_link {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.plan-list-2 >li:before
{
	content:"\2713";
	margin-right:10px;
	font-size:18px;
	color:var(--green);
	background:#fff;
	font-weight:bold;
	border-radius:20px;
	padding:0px 5px;
}
.plan-list-2 >li
{
	font-size:16px;
	list-style:none;
margin:10px;
}
.plan-form
{
	width:100%;
}
.bird_name
{
    text-decoration: underline !important;
    color: var(--green);
}