/* main styling */
@import url("https://fonts.googleapis.com/css?family=Ek+Mukta:200");
@import url("https://fonts.googleapis.com/css?family=Hind:300,400&display=swap");

@font-face {
  font-family: Hind;
  src: url("ttps://fonts.googleapis.com/css?family=Hind:300,400&display=swap");
}

:root {
  --text: rgb(54 207 5);
  --white: #ffffff;
  --grey: #333333;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.scroll{
  overflow: hidden;
  position: fixed;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

#footer div {
  margin: 10px 0 10px 0;
}

.form {
  margin-top: 30px;
}

* {
  box-sizing: border-box;
  font-family: sans-serif;
}

*::before, *::after {
  box-sizing: border-box;
}

/* Styling F.A.Q. */

.container.wide {
  min-width: 95vw;
}

.container {
  margin: 0 auto;
  padding: 4rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid var(--text);
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: var(--text);
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--text);
  border: 1px solid var(--text);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: var(--text);
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 500ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}


/* styling form */

.inner-text {
  padding: 5px;
  border-radius: 5px;
  color: var(--text);
}

@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);

div, textarea, input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input:focus::placeholder {
  color: transparent;
}

.container {
  max-width: 640px;
  min-width: 320px;
  margin: 25px auto 0px;
  background-color: #ffffffd1;
  margin-bottom: 25px;
  margin-top: 50px;
}

.row {
  width: 100%;
  margin: 0 0 1em 0;
  padding: 0 2.5em;
}

.row.header {
  padding: 1.5em 1.5em;
  border-bottom: 1px solid #ccc;
  color: white;
}

.row.body {
  padding: .5em 0em 1em;
}

h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  display: inline-block;
  font-weight: 100;
  font-size: 2.8125em;
  margin: 0 0 0.1em 0;
  padding: 0 0 0.4em 0;
}

h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.25em;
  margin: 1em 0 0.4em 0;
}

.btn {
  font-size: 1.0625em;
  display: inline-block;
  padding: 0.74em 1.5em;
  margin: 1.5em 0 0;
  color: #fff;
  border-width: 0 0 0 0;
  text-transform: uppercase;
  background-color: #b3b3b3;
  border-bottom-color: #8c8c8c;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.btn:hover {
  background-color: #bfbfbf;
}

.btn.btn-submit {
  background-color: var(--text);
}

.btn.btn-submit:hover {
  background-color: #5f7db6;
}

.form {
  max-width: 100%;
  display: block;
}

.form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.form ul li {
  margin: 0 0 1em 0;
  clear: both;
  display: inline-block;
  width: 100%;
}

.form ul li:last-child {
  margin: 0;
}

.form ul li p {
  margin: 0;
  padding: 0;
  float: left;
}

.form ul li p.right {
  float: right;
}

.form ul li .divider {
  margin: 0.5em 0 0.5em 0;
  border: 0;
  height: 1px;
  width: 100%;
  display: block;
  background-color: var(--text);
  background-image: linear-gradient(to right, #ee9cb4, var(--text));
}

.form ul li .req {
  color: #ee9cb4;
}

.form label {
  display: block;
  color: var(--text);
  font-size: 1em;
}

.form input {
  margin: 0 0 0.5em 0;
  border: 1px solid #ccc;
  padding: 6px 10px;
  color: #555;
  font-size: 1em;
  width: inherit;
}

.form textarea {
  border: 1px solid #ccc;
  padding: 6px 10px;
  width: 100%;
  color: #555;
}

.form small {
  color: #4f6fad;
  margin: 0 0 0 0.5em;
}

@media only screen and (max-width: 480px){

  input {
    width: 100%;
  }

  label {
    width: 100%;
    display: inline-block;

    clear: both;
  }

  li, p {
    width: 100%;
  }

  input.btn {
    margin: 1.5em 0 0.5em;
  }

  h1 {
    font-size: 2.25em;
  }

  h3 {
    font-size: 1.125em;
  }

  li small {
    display: none;
  }
}


/* dropdown */

.big {
  font-size: 1.2em;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: inherit;
}

.custom-dropdown select {
  background-color: var(--text);
  color: #fff;
  font-size: inherit;
  padding: .5em;
  padding-right: 2.5em;	
  border: 0;
  margin: 0;
  border-radius: 3px;
  text-indent: 0.01px;
  text-overflow: '';
  width: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px; /* Removes default arrow from firefox*/
  text-overflow: "";  /*Removes default arrow from firefox*/
}

.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-dropdown::after { /*  Custom dropdown arrow */
  content: "\25BC";
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -.5em;
}

.custom-dropdown::before { /*  Custom dropdown arrow cover */
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
}

.custom-dropdown select[disabled] {
  color: rgba(0,0,0,.3);
}

.custom-dropdown select[disabled]::after {
  color: rgba(0,0,0,.1);
}

.custom-dropdown::before {
  background-color: rgba(0,0,0,.15);
}

.custom-dropdown::after {
  color: rgba(0,0,0,.4);
}

select::-ms-expand {
  display: none;
}

textarea:focus-visible,
input:focus-visible,
select:focus-visible{
  outline: none;
}

/* menu */

.app {
  width: 100px;
}

.header-main {
  position: fixed;
  top: 0px;
  width: 100vw;
  background-color: var(--text);
  z-index: 99;
  display: flex;
  padding: 10px 10px 10px 10px;
  align-items: center;
  justify-content: center;
  color: white;
}

#logo-m,
#logo {
  height: 45px;
  z-index: 100;
}

#logo-m path,
#logo path {
  fill: white;
}

.menu{
  font-family:Raleway;
  transition: all .3s;
  text-align:center;
}

.menu ul{
  list-style-type: none;
  display: flex;
  margin: 0;
  align-items: center;
}

.menu ul li{
  display: inline-block;
  font-size: 12px;
}

.menu a{
  display: block;
  padding: 20px 20px;
  color: #111111;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 0px solid transparent;
  transition: all.3s;
  text-decoration: none;
  font-weight: 900;
}

.menu ul li a:hover,.menu ul li a.active{
  text-decoration: none;
}

.menu ul li a:focus{
  outline: 0!important;
  text-decoration: none;
  text-decoration: none;
}

.menu ul li a.active{
  border-color: #fafafa;
}


.arrow {
  border: solid white;
  border-width: 0 10px 10px 0;
  display: inline-block;
  padding: 10px;
}

.up {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* mobile menu */

.hidden{
  display: none!important;
}

#short {
  border-radius: 10px;
}

.header-main .header {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: var(--text);
  overflow: hidden;
  transition: all 0.5s ease-out, background 1s ease-out;
  transition-delay: 0.2s;
  z-index: 1;
}

.header-main .header .burger-container {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.header-main .header .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}

.window .header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #FFF;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}
.window .header .burger-container #burger .bar.topBar {
  transform: translateY(0px) rotate(0deg);
}
.window .header .burger-container #burger .bar.btmBar {
  transform: translateY(6px) rotate(0deg);
}
.window .header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.window .header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  transform: translateX(0px);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}
.window .header ul.menu {
  position: relative;
  display: block;
  padding: 0px 0px 0;
  list-style: none;
}
.window .header ul.menu li.menu-item {
  border-bottom: 1px solid var(--text);
  margin-top: 5px;
  transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.window .header ul.menu li.menu-item:nth-child(1){
  transition-delay: 0.56s;
}
.window .header ul.menu li.menu-item:nth-child(2){
  transition-delay: 0.49s;
}
.window .header ul.menu li.menu-item:nth-child(3){
  transition-delay: 0.42s;
}
.window .header ul.menu li.menu-item:nth-child(4){
  transition-delay: 0.35s;
}
.window .header ul.menu li.menu-item:nth-child(5){
  transition-delay: 0.28s;
}
.window .header ul.menu li.menu-item:nth-child(6){
  transition-delay: 0.21s;
}
.window .header ul.menu li.menu-item:nth-child(7){
  transition-delay: 0.14s;
}
.window .header ul.menu li.menu-item:nth-child(8){
  transition-delay: 0.07s;
}
.window .header ul.menu li.menu-item:nth-child(9){
  transition-delay: 0.07s;
}

.window .header ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #FFF;
  font-family: "Ek Mukta", sans-serif;
  font-weight: 100;
  text-decoration: none;
  font-size: 15px;
  line-height: 0.35;
  font-weight: 200;
  width: 100%;
}
.window .header.menu-opened {
  height: 100%;
  background-color: var(--grey);
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.window .header.menu-opened .burger-container {
  transform: rotate(90deg);
}
.window .header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.window .header.menu-opened .burger-container #burger .bar.topBar {
  transform: translateY(4px) rotate(45deg);
}
.window .header.menu-opened .burger-container #burger .bar.btmBar {
  transform: translateY(3px) rotate(-45deg);
}
.window .header.menu-opened ul.menu li.menu-item {
  transform: scale(1) translateY(0px);
  opacity: 1;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.20s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.27s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.34s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.41s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.48s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.55s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.62s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(8) {
  transition-delay: 0.69s;
}
.window .header.menu-opened ul.menu li.menu-item:nth-child(9) {
  transition-delay: 0.69s;
}
.window .header.menu-opened .icon.icon-bag {
  transform: translateX(75px);
  transition-delay: 0.3s;
}
.window .content {
  font-family: "Ek Mukta", sans-serif;
  padding: 67px 4% 0;
  text-align: justify;
  overflow: scroll;
  max-height: 100%;
}
.window .content::-webkit-scrollbar {
  display: none;
}
.window .content h2 {
  margin-bottom: 0px;
  letter-spacing: 1px;
}
.window .content img {
  width: 95%;
  position: relative;
  display: block;
  margin: 75px auto 75px;
}
.window .content img:nth-of-type(2) {
  margin: 75px auto;
}
@media (max-width: 600px) {
  .window {
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0px;
  }
  .window .header {
    position: fixed;
  }
}

.green svg path,
.green svg{
  fill: white;
}

.green {
  background-color: var(--text);
  color: white;
  padding: 20px;
  text-align: center;
}

.section {
  display: flex;
  justify-content: center;
  padding: 80px 0 80px 0;
}

.section.box {
  display: grid;
  justify-content: center;
}

.last-2 {
  display: flex;
}

.inner-text-home {
  margin: auto;
  display: table-cell;
  vertical-align: middle;
}

span.title-home {
  font-size: 31px;
}

.last-1{
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
  margin-bottom: 25px;
  border-bottom: 4px solid var(--text);
  padding-bottom: 10px;
}

.padding{
  padding: 20px;
}

a {
  text-decoration: none;
}

.app-store {
  width: 250px;
  transition-duration: 0.3s;
  margin: 0 10px 0 10px;
  -webkit-filter: drop-shadow(3px 3px 8px #222);
  filter: drop-shadow(3px 3px 8px #222);
}

.app-store:hover {
  transform: scale(1.03);
}

.section.middle {
  background-color: var(--text);
}

.white-text {
  color: white;
}

.radius {
  border-radius: 10px;
  -webkit-filter: drop-shadow(3px 3px 8px #222);
  filter: drop-shadow(3px 3px 8px #222);
  width: 400px;
  margin-right: 50px;
  display: table;
}

/* mobile */

@media screen and (min-width: 1024px){

  #top {
    position: fixed;
    right: 35px;
    bottom: 60px;
  }

  main {
    margin: auto auto;
  }

  #mobile-menu{
    display: none;
  }

  #logo-m{
    display: none;
  }

  #footer #social{
    display: block;
  }
  #menu #social{
    display: none;
  }

  #home-main {
    height: 100%;
    margin: auto;
    display: block;
    text-align: -webkit-center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px){

  #home-main div {
    margin: 10px 0 10px 0;
  }

  #top {
    position: fixed;
    right: 35px;
    bottom: 60px;
  }

  #menu{
    display: none;
  }
  #logo{
    display: none;
  }
  #logo-m{
    display: block;
    margin: auto;
    top: 10px;
    height: 30px;
  }
  .header-main{
    display: flex;
    align-items:center;
  }
  
  .container {
    padding: 1rem!important;
  }

  .g-recaptcha {
    transform: scale(0.95);
    transform-origin: 0 0;
  }
  .accordion button{
    font-size: 1rem!important;
  }

  #footer #social{
    display: none;
  }
  #menu #social{
    display: block;
  }
  .container{
    margin-top: 60px!important;
  }
  div#space-bottom {
    height: 30px;
  }
  #social a {
    padding: 5px;
  }

  #footer {
    font-size: 10px;
  }

  #home-main {
    display: flex;
    justify-content: space-around;
    height: 100%;
  }

}

.home-content {
  display: block;
  margin: auto;
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}

@media screen and (max-width: 767px){

  #top {
    position: fixed;
    right: 35px;
    bottom: 30px;
  }

  #menu{
    display: none;
  }

  #logo{
    display: none;
  }

  #logo-m{
    display: block;
    margin: auto;
    top: 10px;
    height: 30px;
  }

  .header-main{
    display: flex;
    align-items:center;
    text-align: end;
  }

  .container {
    padding: 1rem!important;
  }

  .g-recaptcha {
    transform: scale(0.95);
    transform-origin: 0 0;
  }

  .accordion button{
    font-size: 1rem!important;
  }

  #footer #social{
    display: none;
  }

  #menu #social{
    display: block;
  }

  .container{
    margin-top: 60px!important;
  }

  #space-bottom {
    height: 30px;
  }

  #social a {
    padding: 5px;
  }

  #footer {
    font-size: 10px;
  }

  #home-main {
    display: table;
    margin: auto;
  }

  #mobile-spacer {
    height: 50px;
  }

  .radius {
    width: 270px!important;
    margin-right: auto!important;
    margin-bottom: 20px;
  }

  .section {
    display: grid!important;
    padding: 15px 0 15px 0!important;
    text-align: -webkit-center;
  }

  .mobile-hide{
    display: none;
  }

  .last-1 {
    -webkit-filter: none!important;
    filter: none!important;
  }

  .last-2 {
    display: grid!important;
    text-align: center!important;
  }

  svg#Layer_1 {
    width: 90%;
    margin-top: 20px;
  }

  .app-store {
    width: 180px!important;
    margin: 10px 10px 10px 10px!important;
  }

  .home-content img {
    width: 180px;
  }

  #short {
    width: 180px!important;
    height: 380px!important;
  }

  h2 {
    font-size: 18px;
  }

  #spacer-top {
    height: 50px!important;
  }

  .home-content img {
    margin-top: 20px;
  }

}

/* popup */

#popup {
  position: fixed;
  left: calc(50% - (250px / 2));
  width: 250px;
  background-color: white;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  transition-duration: 1s;
  bottom: 0px;
}

/* Footer */

#footer {
  bottom: 0px;
  width: 100%;
  background-color: var(--grey);
  text-align: center;
  justify-content: inherit;
  border-top: 1px solid var(--text);
  color: white;
  display: grid;
  padding: 20px 0px 20px 0px;
}

#social a {
  text-decoration: none;
}

.social {
  width: 27px;
  transition-duration: 0.5s;
}

.social:hover {
  transform: scale(1.4);
}

#items {
  display: flex;
  align-items: center;
}

#footer a {
  color: var(--text);
}

.cls-1{
  fill:#39d00b;
}

.cls-2{
  fill:#38d00a;
}

.menu-item.active a {
  color: white;
}

#footer div {
  margin: 10px 0 10px 0;
}

#social {
  display: flex;
}

#logo-m{
  transition-duration: 0.5s;
}

.hide{
  top: -40px!important;
}

#menu-hidden {
  height: calc(100vh - 50px);
  overflow-y: auto;
  padding-bottom: 25px;
  margin-block-start: -1em;
}

.lds-roller {
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.post{
  margin-top: 10px;
  margin-bottom: 10px;
}

#spacer-top{
  height: 80px;
}

.post img {
  max-width: 100%;
  min-width: 100%;
}

.post h1{
  color: var(--text);
}

#second-option,
#Download-pop {
  background-color: #00000063;
  padding: 25px;
  width: 100vw;
  height: 100vh;
}

.inner-option {
  display: grid;
  max-width: 320px;
  min-width: 250px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}

.inner-option img:hover,
.inner-option button:hover{
  transform: scale(1.1);
}

.inner-option img,
.inner-option button{
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
  transition-duration: 0.5s;
}


.inner-option button {
  background-color: green;
  color: white;
  padding: 10px 20px 10px 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 0px solid green;
  cursor: pointer;
}


.inner-option button.close{
  background-color: red;
}

.inner-option a{
  margin: 5px 0 5px 0;
}

.addon-text {
  color: grey;
  font-size: 12px;
}

span.green-text {
  color: var(--text);
}