*,
html {
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
}

.container {
  width: 60%;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
}

.row {
  margin: 10px 2px;
  width: auto;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
  padding: 20px;
}

[class*="col-"] {
  float: left;
  padding-right: 4px;
  padding-left: 4px;
}

.col-1,
.col-wd-1,
.col-sm-1 {
  width: 8.33%;
}

.col-2,
.col-wd-2,
.col-sm-2 {
  width: 16.66%;
}

.col-3,
.col-wd-3,
.col-sm-3 {
  width: 25%;
}

.col-4,
.col-wd-4,
.col-sm-4 {
  width: 33.33%;
}

.col-5,
.col-wd-5,
.col-sm-5 {
  width: 41.66%;
}

.col-6,
.col-wd-6,
.col-sm-6 {
  width: 50%;
}

.col-7,
.col-wd-7,
.col-sm-7 {
  width: 58.33%;
}

.col-8,
.col-wd-8,
.col-sm-8 {
  width: 66.66%;
}

.col-9,
.col-wd-9,
.col-sm-9 {
  width: 75%;
}

.col-10,
.col-wd-10,
.col-sm-10 {
  width: 83.33%;
}

.col-11,
.col-wd-11,
.col-sm-11 {
  width: 91.66%;
}

.col-12,
.col-wd-12,
.col-sm-12 {
  width: 100%;
}

input[type="text"].input,
input[type="email"].input,
input[type="password"].input,
input[type="number"].input,
input[type="date"].input,
input[type="time"].input,
select.input,
textarea.input {
  width: 100%;
  padding: 10px 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline-color: #2196f3;
}

input[type="checkbox"] {
  cursor: pointer;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-baseline {
  line-height: 40px;
}


[readonly] {
  background-color: #fff5e0;
}

button:disabled {
  background-color: #ccc;
}

button:disabled:hover {
  background-color: #ccc;
}

[class^="btn-"] {
  border: #ccc 1px solid;
  border-radius: 4px;
  cursor: pointer;
  padding: 5px 12px;
  border-color: transparent;
  color: #fff;
  outline: 0;
}

a[class^="btn-"] {
  text-decoration: none;
  display: inline-block;
}

.btn-sm {
  padding: 4px 8px;
  font-size: 12px;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 16px;
}

.btn-default {
  background: #fff;
  color: #212121;
  border-color: #ccc;
}

.btn-default:hover {
  background: #f3f3f3;
}

.btn-primary {
  background-color: #2196f3;
}

.btn-primary:hover {
  background: #158ae7;
}

.btn-link {
  background-color: #03a9f4;
}

.btn-link:hover {
  background: #009de8;
}

.btn-info {
  background-color: #209cee;
}

.btn-success {
  background-color: #00d1b2;
}

.btn-success:hover {
  background: #00c5a6;
}

.btn-warning {
  background-color: #ffeb3b;
  color: #212121;
}

.btn-warning:hover {
  background: #f3df2f;
}

.btn-danger {
  background-color: #f44336;
}

.btn-danger:hover {
  background: #e8372a;
}

.btn-outline {
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #f3f3f3;
}

.btn-default.btn-outline {
  background-color: #fff;
  color: #363636;
  border-color: #ccc;
}

.btn-primary.btn-outline {
  border-color: #2196f3;
  color: #2196f3;
}

.btn-link.btn-outline {
  border-color: #3273dc;
  color: #3273dc;
}

.btn-info.btn-outline {
  border-color: #209cee;
  color: #209cee;
}

.btn-success.btn-outline {
  border-color: #23d160;
  color: #23d160;
}

.btn-warning.btn-outline {
  border-color: #ffdd57;
  color: #ffdd57;
}

.btn-danger.btn-outline {
  border-color: #ff3860;
  color: #ff3860;
}

@media screen and (max-width: 992px) {
  .column {
    width: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

/* 
@media only screen and (max-width: 1200px) {
  .container {
    max-width: 1140px;
    background: rebeccapurple;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 960px;
    background: beige;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    max-width: 720px;
    background: bisque;
  }
}

@media only screen and (max-width: 576px) {
  .container {
    max-width: 540px;
    background: red;
  }
} */


/* .container {
  @media (min-width: 1200px) {
    max-width: 1140px;
  }

  @media (min-width: 992px) {
    max-width: 960px;
  }

  @media (min-width: 768px) {
    max-width: 720px;
  }

  @media (min-width: 576px) {
    max-width: 540px;
  }
} */

/* .options>selecst {
  text-align: center;
}

.input-button {
  flex-direction: row;
} */

.header {
  font-size: 2em;
  margin: 12px 0;
}



.bold {
  font-weight: bold;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
}

/* #downloading {
  color: #0485ff;
} */

/* select {
  margin: 50px;
  width: 268px;
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 5px;
  height: 34px;
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #ddd;
  -webkit-appearance: none;
  background-position-x: 244px;
  text-align-last: center;
} */

.input-url {
  border-radius: 4px 0 0 4px;
  width: 35em;
  border: 2px solid #eeeeee;
  background: #eeeeee;
  outline: none;
}

.input-url:focus {
  border: 2px solid #0485ff;
}

.button-convert {
  border-radius: 0 4px 4px 0;
  border: 2px solid #0485ff;
  background: #0485ff;
  color: #fff;
}

.input-url, .button-convert {
  font-size: 22px;
  padding: 8px 8px;
}

button {
  cursor: pointer;
}

.btn-link {
  background: none !important;
  border: none;
  color: #0485ff;
  text-decoration: underline;
  cursor: pointer;
}


/* https://colorhunt.co/palette/ff6b6bffd93d6bcb774d96ff */
.text-danger {
  color: #FF6B6B;
}

.f-22 {
  font-size: 22px;
}

.f-20 {
  font-size: 20px;
}

.f-18 {
  font-size: 18px;
}