#goto {
    margin: 30px 0;
    display: inline-block;
}

#goto button {
    font-family: "Poppins", sans-serif;
}

.button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
        hsl(340deg 100% 16%) 0%,
        hsl(340deg 100% 32%) 8%,
        hsl(340deg 100% 32%) 92%,
        hsl(340deg 100% 16%) 100%);
}

.button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .button-82-front {
        font-size: 1.25rem;
        padding: 10px 35px;
    }
}

.button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
    outline: none;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.container {
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
}

body {
    font: 16px/20px "Open Sans", Arial, Helvetica, sans-serif;
    line-height: normal;
    padding-top: 11px;
    color: #2a2a2a;
    font-weight: 400;
    background: #d5d5d5 url(../images/bg.jpg) center top fixed no-repeat;
    background-size: 100% auto
}

header {
    position: relative;
    background-color: #000;
    padding-top: 5px;
    padding-bottom: 30px;
    text-align: center;
    color: #e7e7e7;
}

header .logo-wrap {
    background-color: rgb(255 255 255 / 25%);
    padding: 15px 0;
}

header .detail-wrap {
    padding: 15px;
}

.slogan {
    color: #ffff00;
    margin-top: 30px;
}

#logo {}

#logo img {}

main {
    background-color: #f2f2f2;
    padding: 15px;
    box-sizing: border-box;
}


h1 {
    font-weight: 700;
    font-size: 28px;
    margin: 5px 0 25px;
    text-align: center;
}

h2 {
    font-weight: 600;
    font-size: 24px;
    margin: 5px 0 20px;
    position: relative;
}

h2:after {
    left: -25px;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(204, 51, 0, 0);
    border-left-color: #d90000;
    border-width: 20px;
    margin-top: -20px
}

h3 {
    font-weight: 500;
    font-size: 22px;
    margin: 5px 0 15px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.decor {
    position: relative
}

.decor:after {
    left: 0;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(204, 51, 0, 0);
    border-left-color: #d90000;
    border-width: 20px;
    margin-top: -20px
}

article {
    padding: 15px 40px;
}

footer {
    padding: 15px 40px;
    box-sizing: border-box;
    background-color: #000;
    color: #e7e7e7;
    text-align: center;
}

.aligncenter {
    text-align: center;
    display: block;
    margin: auto;
}


.page-title-search {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    display: flex;
    margin: 35px 0 25px;
    background: #202125;
}

.page-title-search:before {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    display: block;
    content: "";
    background: url("./search.png") no-repeat center
}

.page-title-search input[type=search],
.page-title-search input[type=text] {
    color: #ededed;
    font-family: Poppins, sans-serif;
    border-radius: 0;
    width: 65%;
    border: none;
    padding: 8px 0 8px 55px;
    font-size: 16px;
    font-weight: 300;
    background: #242625;
}

.page-title-search input[type=search]:focus {
    outline: none;
}

.page-title-search #selectedFormat.dropbtn {
    border-radius: 0;
    background-color: #1f74ad;
    color: #fff;
    width: 16%;
    padding: 14px 16px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 52px
}

.page-title-search input[type=submit] {
    width: 20%;
    background: #c00;
    border: none;
    text-align: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(98, 98, 98, .1);
    -moz-box-shadow: 0 2px 8px rgba(98, 98, 98, .1);
    -ms-box-shadow: 0 2px 8px rgba(98, 98, 98, .1);
    -webkit-box-shadow: 0 2px 8px rgba(98, 98, 98, .1);
    -o-box-shadow: 0 2px 8px rgba(98, 98, 98, .1)
}

.page-title-search input[type=submit]:hover {
    background: #900
}

.page-title-search #selectedFormat.dropbtn:focus {
    outline: none;
}

#form1 select {
    background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%2017.414%203.293%208.707l1.414-1.414L12%2014.586l7.293-7.293%201.414%201.414L12%2017.414z%22%20fill%3D%22white%22/%3E%3C/svg%3E) right 15px center/16px 16px no-repeat;
    color: #fff
}

@media screen and (min-width:767px) {
    .page-title-search input[type=submit] {
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px
    }
}

@media screen and (max-width: 767px) {
    article {
        padding: 15px;
    }
    .page-title-search {
        flex-wrap: wrap
    }

    .page-title-search:before {
        top: 26px
    }

    .page-title-search input[type=search] {
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 1.5;
    }

    .page-title-search #selectedFormat.dropbtn,
    .page-title-search input[type=submit] {
        width: 50%
    }
}

@media screen and (max-width:480px) {
    .page-title-search:before {
        left: 15px
    }
}

.convert-form {
    max-width: 80%;
    margin: auto;
}

table {
    width: 100%;
}