:root{
    --main-color: #38f8ac;
    --main-color-05: #38f8ac94;
    --main-color-light: #a7f8d8;
    --light-grey: #ededed;
    --grey: #bababa;
    --main-black: #44a37e;
}

#result{
  /* max-height: 140px; */
  width: 100%;
  /* padding: 20px; */
  border-radius: 1em;
  border: 1px solid var(--light-grey);
  position: relative;
  /* position: relative; */
}
#result-content {
    color: #999999;
    font-size: .8em;
    overflow-y: scroll;
    max-height: 140px;
    padding: 20px;
}


div#app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Quicksand;
    background-color: var(--main-color);
    color: var(--main-black);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

main {
    max-width: 600px;
    width: 95%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.description {
    font-size: 1em;
    /* line-height: 1.5em; */
    max-width: 80%;
}

.input-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 13px;
    flex-wrap: wrap;
}


.input-radio input {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

.radio-wrapper {
    display: flex;
}

input {
    border-radius: 1em;
    /* line-height: 2em; */
    border: 1px solid  var(--light-grey);
    padding: .5em;
    /* margin-bottom: 13px; */
    /* width: 100%; */
}



.input-title {margin-right: 15px;}
button.copy_clipboard {
    /* position: absolute; */
    /* top: 0; */
    /* right: 0; */
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
}

button {
    border-radius: 2em;
    padding: .3em 1em;
    font-size: 1.2em;
    border: 1px solid;
    background: var(--main-color);
    border-color: currentColor;
    color: var(--main-black);
    border-color: currentColor;
    box-shadow: 0px 2px 20px #00000015;
}

.copied {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color-05);
}

.copied > div {
    background-color: #fff;
    height: 200px;
    width: 90%;
    max-width: 400px;
    border-radius: 1em;
    box-shadow: 0px 10px 30px #00000026;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--grey);
}
.result-wrapper {
    background-color: #fff;
    border-radius: 1em;
    padding: 20px;
    color: #000;
    box-shadow: 0px 10px 30px #00000026;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    height: 100%;
}
footer {
    width: 100%;
    background-color: #fff;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    color: #000;
    font-size: 0.8em;
}

a {
    background-color: var(--main-color);
    font-weight: bold;
    border-radius: 1em;
    color: #000;
    text-decoration: none;
    padding: 0 9px;
}

h1.title {
    font-size: 1.5em;
    margin-top: 2em;
    color: #fff;
    text-shadow: 0px 0px 14px #44a37e8c;
}

button.copy_close {
    margin-top: 20px;
}

input:focus {
    outline: none;
    border-color: var(--main-color);
}
button:hover{
  cursor:pointer;
}
button:focus {

    outline: none;
}

.description > * {
    margin-top: 10px;
}
.input-desc {
    width: 100%;
    font-size: .8em;
    text-align: left;
    color: var(--grey);
    margin-top: 6px;
}


body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: url(airtable.png);
    background-size: 75px;
    opacity: .2;
    z-index: 0;
    background-repeat: space;
    width: 100%;
}

.input-box label {
    /* border: 1px solid; */
    /* border-radius: 1em; */
    /* margin-right: 8px; */
    /* border-color: var(--light-grey); */
    /* padding: .1em .5em; */
    font-size: .9em;
    position: relative;
}

.input-box label.active .input-radio-name {
    border-color: var(--main-color);
}

.input-radio-name {
    border: 1px solid;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 2em;
    margin-right: 8px;
    border-color: var(--light-grey);
    padding: .1em .5em;
    cursor:pointer;
}
